Click here to Skip to main content
15,899,679 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: here is what I got... Pin
Blake Miller25-Aug-05 5:43
Blake Miller25-Aug-05 5:43 
Generalyou are amazing! Pin
valerie9925-Aug-05 5:59
valerie9925-Aug-05 5:59 
GeneralMFC regular DLL Pin
LeeeNN24-Aug-05 11:29
LeeeNN24-Aug-05 11:29 
AnswerRe: MFC regular DLL Pin
Shog924-Aug-05 13:09
sitebuilderShog924-Aug-05 13:09 
GeneralRe: MFC regular DLL Pin
LeeeNN24-Aug-05 13:51
LeeeNN24-Aug-05 13:51 
GeneralRe: MFC regular DLL Pin
Christian Graus24-Aug-05 14:07
protectorChristian Graus24-Aug-05 14:07 
GeneralRe: MFC regular DLL Pin
LeeeNN24-Aug-05 14:45
LeeeNN24-Aug-05 14:45 
AnswerRe: MFC regular DLL Pin
Shog924-Aug-05 14:59
sitebuilderShog924-Aug-05 14:59 
Two notes:
1) C++ does name mangling to encode additional information in exported symbols. You need to list the mangled names in the .def file, or use Microsoft-specific commands in your code to make this happen. (hint: the latter is far easier than the former)

2) Because of the way C++ works, you can't expose a class without exposing private member variables. If you don't want your client to see these when reading the header file, then you'll need to go to some extra effort to make that happen - export a class that doesn't have the private member variables, but internally uses the class that does to do what it needs. Do a search for "facade pattern" if that doesn't make sense.


GeneralRe: MFC regular DLL Pin
LeeeNN24-Aug-05 15:25
LeeeNN24-Aug-05 15:25 
GeneralCalling programs from a VC++ program Pin
Aditya Rao24-Aug-05 8:02
Aditya Rao24-Aug-05 8:02 
GeneralRe: Calling programs from a VC++ program Pin
David Crow24-Aug-05 8:10
David Crow24-Aug-05 8:10 
GeneralRe: Calling programs from a VC++ program Pin
Roland Pibinger24-Aug-05 12:00
Roland Pibinger24-Aug-05 12:00 
GeneralRe: Calling programs from a VC++ program Pin
David Crow25-Aug-05 4:54
David Crow25-Aug-05 4:54 
GeneralRe: Calling programs from a VC++ program Pin
ThatsAlok24-Aug-05 18:32
ThatsAlok24-Aug-05 18:32 
General3rd Party Grids, Tree Controls, editors Pin
Patrick D Owens24-Aug-05 6:01
Patrick D Owens24-Aug-05 6:01 
GeneralRe: 3rd Party Grids, Tree Controls, editors Pin
Maximilien24-Aug-05 7:48
Maximilien24-Aug-05 7:48 
GeneralScrollbar help Pin
KellyR24-Aug-05 4:52
KellyR24-Aug-05 4:52 
Generalmultithreaded dialog problems Pin
DaveManGO24-Aug-05 4:20
DaveManGO24-Aug-05 4:20 
GeneralRe: multithreaded dialog problems Pin
David Crow24-Aug-05 4:26
David Crow24-Aug-05 4:26 
GeneralRe: multithreaded dialog problems Pin
DaveManGO24-Aug-05 4:31
DaveManGO24-Aug-05 4:31 
GeneralRe: multithreaded dialog problems Pin
David Crow24-Aug-05 5:22
David Crow24-Aug-05 5:22 
GeneralRe: multithreaded dialog problems Pin
DaveHuber24-Aug-05 8:08
DaveHuber24-Aug-05 8:08 
GeneralRe: multithreaded dialog problems Pin
David Crow24-Aug-05 8:18
David Crow24-Aug-05 8:18 
GeneralRe: multithreaded dialog problems Pin
DaveManGO25-Aug-05 4:43
DaveManGO25-Aug-05 4:43 
GeneralRe: multithreaded dialog problems Pin
David Crow25-Aug-05 4:52
David Crow25-Aug-05 4:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.