Click here to Skip to main content
15,922,894 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Message loops... Pin
Christian Graus21-Jan-03 21:02
protectorChristian Graus21-Jan-03 21:02 
GeneralRe: Message loops... Pin
Michael Dunn21-Jan-03 20:28
sitebuilderMichael Dunn21-Jan-03 20:28 
GeneralEmail Address Extraction Pin
carrie21-Jan-03 12:26
carrie21-Jan-03 12:26 
GeneralRe: Email Address Extraction Pin
Larry Antram21-Jan-03 13:12
Larry Antram21-Jan-03 13:12 
GeneralRe: Email Address Extraction Pin
Christian Graus21-Jan-03 14:20
protectorChristian Graus21-Jan-03 14:20 
GeneralRe: Email Address Extraction Pin
Anonymous21-Jan-03 13:23
Anonymous21-Jan-03 13:23 
GeneralRe: Email Address Extraction Pin
Larry Antram21-Jan-03 13:21
Larry Antram21-Jan-03 13:21 
GeneralRe: Email Address Extraction Pin
bryce21-Jan-03 13:31
bryce21-Jan-03 13:31 
GeneralRe: Email Address Extraction Pin
Larry Antram21-Jan-03 13:35
Larry Antram21-Jan-03 13:35 
GeneralRe: Email Address Extraction Pin
carrie21-Jan-03 13:48
carrie21-Jan-03 13:48 
GeneralRe: Email Address Extraction Pin
Larry Antram21-Jan-03 13:52
Larry Antram21-Jan-03 13:52 
GeneralRe: Email Address Extraction Pin
carrie21-Jan-03 13:58
carrie21-Jan-03 13:58 
GeneralRe: Email Address Extraction Pin
Anonymous21-Jan-03 13:45
Anonymous21-Jan-03 13:45 
GeneralRe: Email Address Extraction Pin
Larry Antram21-Jan-03 13:47
Larry Antram21-Jan-03 13:47 
GeneralRe: Email Address Extraction Pin
Christian Graus21-Jan-03 15:19
protectorChristian Graus21-Jan-03 15:19 
GeneralRe: Email Address Extraction Pin
Andreas Saurwein21-Jan-03 13:24
Andreas Saurwein21-Jan-03 13:24 
GeneralRe: Email Address Extraction Pin
carrie21-Jan-03 13:38
carrie21-Jan-03 13:38 
Generaltoolbar resize as address in explorer. Pin
tobbemannen21-Jan-03 11:48
tobbemannen21-Jan-03 11:48 
Generalvc7 application problems in win98 Pin
Stefan Dahlin21-Jan-03 11:26
Stefan Dahlin21-Jan-03 11:26 
GeneralRe: vc7 application problems in win98 Pin
AlexO21-Jan-03 12:13
AlexO21-Jan-03 12:13 
GeneralRe: vc7 application problems in win98 Pin
Michael Dunn21-Jan-03 20:31
sitebuilderMichael Dunn21-Jan-03 20:31 
GeneralRe: vc7 application problems in win98 Pin
Stefan Dahlin22-Jan-03 5:17
Stefan Dahlin22-Jan-03 5:17 
GeneralRe: vc7 application problems in win98 Pin
Stefan Dahlin22-Jan-03 8:15
Stefan Dahlin22-Jan-03 8:15 
Maybe i have this problem on another place in the code. The following code is a part of the OnToolTipText function:

#ifndef _UNICODE
if (pNMHDR->code == TTN_NEEDTEXTA)
lstrcpyn(pTTTA->szText, strTipText, 80);
else
_mbstowcsz(pTTTW->szText, strTipText, 80);
#else
if (pNMHDR->code == TTN_NEEDTEXTA)
_wcstombsz(pTTTA->szText, strTipText, 80);
else
lstrcpyn(pTTTW->szText, strTipText, 80);
#endif


This should handle the difference between XP and Win98, right?

But it doesn't. My program works fine in XP, but terminates in Win98.
Does it matter that i develop in vc7 on XP? And then try to run the exe
on Win98? But i think that it should work anyway.

Please, someone, help!!
GeneralDrawing Unicode Text with GDI Pin
alibobba21-Jan-03 10:55
alibobba21-Jan-03 10:55 
GeneralRe: Drawing Unicode Text with GDI Pin
Stefan Pedersen21-Jan-03 15:21
Stefan Pedersen21-Jan-03 15:21 

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.