Trying to run wxPython inside maya

well well well, I have been digging into wxPython and now I want to do some implementastion inside maya, I have added the path of the wx module (the wxPython module is same as python version 2.6 that comes with maya 2013)

but on import i get the error saying:

# Error: line 1: DLL load failed: The specified module could not be found.
# Traceback (most recent call last):
#   File "<maya console>", line 1, in <module>
#   File "C:\Python26\Lib\site-packages\wx-2.8-msw-unicode\wx\__init__.py", line 45, in <module>
#     from wx._core import *
#   File "C:\Python26\Lib\site-packages\wx-2.8-msw-unicode\wx\_core.py", line 4, in <module>
#     import _core_
# ImportError: DLL load failed: The specified module could not be found. # 

has anyone tried wxmaya?

That module probably has .dll files in it. Try adding is to the system path as well.

the dll files are in the wx folder so I added that folder to system path but still i get the same error

You can try using depends to check what the .pyd is trying to use: http://www.dependencywalker.com/
Also, you are not mixing a 32bit version of wxWindows with a 64bit version of Maya (or visa versa) are you?

well no I am on 32bit windows so everything on is 32 bit… but which pyd i have to select to pyd is trying to use ?