From: Mattia B. <mb...@ds...> - 2001-11-28 21:14:01
|
> After compiling wxWindows into a DLL on a WinNT system using ActivePerl > build 623 w/ VC++ I've created a simple wxPerl app to test it's > functionality. When launching a script that runs: > > ##### > use MyModule::GUI::App; > > # Create an instance of the Wx::App-derived class > my $app = new MyModule::GUI::App(); > > # Start processing events > $app->MainLoop(); > ##### > > I get an error in the App.pm file at the line that states: > > use Wx qw(wxDefaultPosition); > > and a window pops up saying: > > "The procedure entry point > Above__28wxIndividualLayoutConstraintP12wxWindowBasei count not be located > in the dynamic link library wx22_7.dll" Looks suspiciously like you didn't recompile wxPerl against the wxWindows library you compiled. Why not start with the ppm package? It is compiled against 2.2.7, so what is the problem/why are you recompiling wxWindows? > printed to the console. I'm not really sure what's going wrong here or > where to start looking ... anyone have any ideas? Many thanks, The problem is that Wx.dll is compiled with MinGW > wxWindows/wxPerl so far looks very exciting if I can get it to work ... Regards Mattia |