loading dll file to my running wxFormBuilder GUI- C++ Topic is solved

Do you have a typical platform dependent issue you're battling with ? Ask it here. Make sure you mention your platform, compiler, and wxWidgets version.
Post Reply
Karam24
In need of some credit
In need of some credit
Posts: 3
Joined: Tue Jul 17, 2018 7:32 pm

loading dll file to my running wxFormBuilder GUI- C++

Post by Karam24 »

Hello all

I am not an expert in programming and I need help. #-o

I am working on a windows simulation software developed with WxFormBuilder and C++. I need to write a code that loads a DLL file during the simulation, and I need to know the starting point for this :/



Thank you
DavidHart
Site Admin
Site Admin
Posts: 4252
Joined: Thu Jan 12, 2006 6:23 pm
Location: IoW, UK

Re: loading dll file to my running wxFormBuilder GUI- C++

Post by DavidHart »

I'm locking this as it is a duplicate of your previous topic.
Last edited by doublemax on Fri Jul 20, 2018 1:36 pm, edited 1 time in total.
Reason: unlocked because i accidentally deleted the mentioned "previous topic"
User avatar
doublemax
Moderator
Moderator
Posts: 19102
Joined: Fri Apr 21, 2006 8:03 pm
Location: $FCE2

Re: loading dll file to my running wxFormBuilder GUI- C++

Post by doublemax »

Any wxWidgets application under Windows is still a "normal" Windows application. So loading a DLL the "usual" way should work.

You could also use wxDynamicLibrary, but it doesn't make any difference.
http://docs.wxwidgets.org/trunk/classwx ... brary.html
Use the source, Luke!
Karam24
In need of some credit
In need of some credit
Posts: 3
Joined: Tue Jul 17, 2018 7:32 pm

Re: loading dll file to my running wxFormBuilder GUI- C++

Post by Karam24 »

thanks for your reply! I really needed some clarity about it.
Post Reply