Click here to Skip to main content
15,923,087 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: deleting a function Pin
includeh101-Nov-02 2:36
includeh101-Nov-02 2:36 
QuestionWhy my FlexGrid not update? Pin
sages31-Oct-02 21:58
sages31-Oct-02 21:58 
GeneralUser defined buttons on MessageBox Pin
Mr Bose Dayala31-Oct-02 21:49
Mr Bose Dayala31-Oct-02 21:49 
GeneralRe: User defined buttons on MessageBox Pin
Mel Feik31-Oct-02 22:09
Mel Feik31-Oct-02 22:09 
GeneralRe: User defined buttons on MessageBox Pin
Eugene Pustovoyt31-Oct-02 22:20
Eugene Pustovoyt31-Oct-02 22:20 
GeneralFont in VC++ IDE Pin
stevenson31-Oct-02 20:34
stevenson31-Oct-02 20:34 
GeneralUrgent THREE Pin
stevenson31-Oct-02 19:46
stevenson31-Oct-02 19:46 
GeneralRe: Urgent THREE Pin
ian mariano1-Nov-02 0:40
ian mariano1-Nov-02 0:40 
stevenson wrote:
1. How can I explicitly use a *.dll file without manually move it under my *.exe file's folder?

Well, if you put it somewhere in your PATH, Windows will find it. However, it is highly frowned upon to put things in system directories (Like C:\Windows\System or C:\Winnt\System32.)


stevenson wrote:
3. I try to load classes in a *.dll file, while what's wrong here.

Hmmm. Are you defining the class as an Export from your DLL? Is this MFC? If so, you can qualify your class (in the header) with:

C++
class AFX_EXT_CLASS CSerialComm


If not, you can #define your own export macro (add MYPROJ_EXPORTS to your Preprocessor settings in your build settings):

C++
#ifdef MYPROJ_EXPORTS
#define MY_EXPORT  __declspec(dllexport)
#else
#define MY_EXPORT  __declspec(dllimport)
#endif





"The greatest danger to humanity is humanity without an open mind."
- Ian Mariano


http://www.ian-space.com/
QuestionCharacter(like u)? Pin
imran_rafique31-Oct-02 16:17
imran_rafique31-Oct-02 16:17 
AnswerRe: Character(like u)? Pin
Christian Graus31-Oct-02 16:47
protectorChristian Graus31-Oct-02 16:47 
GeneralRe: Character(like u)? Pin
Le centriste31-Oct-02 18:19
Le centriste31-Oct-02 18:19 
GeneralRe: Character(like u)? Pin
Christian Graus31-Oct-02 19:18
protectorChristian Graus31-Oct-02 19:18 
GeneralRe: Character(like u)? Pin
includeh1031-Oct-02 23:41
includeh1031-Oct-02 23:41 
GeneralRe: Character(like u)? Pin
Christian Graus1-Nov-02 0:36
protectorChristian Graus1-Nov-02 0:36 
GeneralRe: Character(like u)? Pin
Gary R. Wheeler2-Nov-02 3:54
Gary R. Wheeler2-Nov-02 3:54 
GeneralLinked List Problem (PROBLEM SOLVED -- THANKS TO ALL) Pin
Nick Parker31-Oct-02 13:38
protectorNick Parker31-Oct-02 13:38 
GeneralRe: Linked List Problem Pin
Tim Smith31-Oct-02 13:51
Tim Smith31-Oct-02 13:51 
GeneralRe: Linked List Problem Pin
Nick Parker31-Oct-02 14:06
protectorNick Parker31-Oct-02 14:06 
GeneralRe: Linked List Problem Pin
ColinDavies31-Oct-02 14:11
ColinDavies31-Oct-02 14:11 
GeneralRe: Linked List Problem Pin
Nick Parker31-Oct-02 14:13
protectorNick Parker31-Oct-02 14:13 
GeneralRe: Linked List Problem Pin
Alexander Wiseman31-Oct-02 15:06
Alexander Wiseman31-Oct-02 15:06 
GeneralRe: Linked List Problem Pin
Nick Parker31-Oct-02 15:19
protectorNick Parker31-Oct-02 15:19 
GeneralRe: Linked List Problem (PROBLEM SOLVED -- THANKS TO ALL) Pin
KarstenK1-Nov-02 1:00
mveKarstenK1-Nov-02 1:00 
GeneralFrustrating new operator problem Pin
Sparticus31-Oct-02 12:18
Sparticus31-Oct-02 12:18 
GeneralRe: Frustrating new operator problem Pin
ian mariano31-Oct-02 12:27
ian mariano31-Oct-02 12:27 

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.