Hi
I created python windows application form visual studio 2010 and so when I want to the Import wx I get this error: " No module named wx " could you help me what should I do for solve that ?
My Code :
import clr
import getopt
import wx
import anydbm
clr.AddReference('System.Drawing')
clr.AddReference('System.Windows.Forms')
from System.Drawing import *
from System.Windows.Forms import *
class MyForm(Form):
def __init__(self):
# Create child controls and initialize form
pass
Application.EnableVisualStyles()
Application.SetCompatibleTextRenderingDefault(False)
form = MyForm()
Application.Run(form) \ I got error from this line when I want to the run ( F5 )
|