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
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
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
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
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
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
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 base class virtual functions
bool wxLuaModuleApp::OnInit()
{
#if