Re: [wxlua-users] Modification to luamodule.cpp

2010-12-04 Thread Andre Arpin
John Labenski writes: > Can you make the change at the bottom of this page and see if it fixes > it without (re)loading comctrl32 in wxLua? > > http://wiki.wxwidgets.org/Creating_A_DLL_Of_An_Application > changing ::LoadLibrary(_T("comctl32.dll")); to static wxDynamicLibrary dllComCtl32(_T("c

Re: [wxlua-users] Modification to luamodule.cpp

2010-12-01 Thread John Labenski
On Wed, Dec 1, 2010 at 9:34 AM, Andre Arpin wrote: > Andre Arpin writes: > >> Sorry to tell you that >>       ::LoadLibrary(_T("comctl32.dll")); >> has to be used. I think that I managed to lock the comctl32.dll >> permanently when I tested wxDynamicLibrary. >> > > I should have mentionned this i

Re: [wxlua-users] Modification to luamodule.cpp

2010-12-01 Thread Andre Arpin
Andre Arpin writes: > > Sorry to tell you that > ::LoadLibrary(_T("comctl32.dll")); > has to be used. I think that I managed to lock the comctl32.dll > permanently when I tested wxDynamicLibrary. > I should have mentionned this is on window 64 bits. I think this is the culprit not wind

Re: [wxlua-users] Modification to luamodule.cpp

2010-11-27 Thread Andre Arpin
John Labenski writes: > > On Sat, Nov 20, 2010 at 4:55 PM, Andre Arpin wrote: > > The following modification allow wx.dll to work on window 7 / 64 bits. > > Without it you get a warning specifiying that comctl32.dll is not loaded. > > Why this suddenly happen is unknowned and will probably rema

Re: [wxlua-users] Modification to luamodule.cpp

2010-11-23 Thread Andre Arpin
John Labenski writes: > > What compiler and version are you using? > Visual Studi0 2008 -- Increase Visibility of Your 3D Game App & Earn a Chance To Win $500! Tap into the largest installed PC base & get more eyes o

Re: [wxlua-users] Modification to luamodule.cpp

2010-11-22 Thread John Labenski
On Sat, Nov 20, 2010 at 4:55 PM, Andre Arpin wrote: > The following modification allow wx.dll to work on window 7 / 64 bits. > Without it you get a warning specifiying that comctl32.dll is not loaded. > Why this suddenly happen is unknowned and will probably remain this way. > > // Override the ba