Click here to Skip to main content
15,906,081 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
GeneralCOM and Multithreading Pin
act_x21-Jan-03 10:44
act_x21-Jan-03 10:44 
GeneralRe: COM and Multithreading Pin
John M. Drescher21-Jan-03 11:02
John M. Drescher21-Jan-03 11:02 
GeneralRe: COM and Multithreading Pin
act_x21-Jan-03 11:12
act_x21-Jan-03 11:12 
GeneralRe: COM and Multithreading Pin
Stefan Pedersen21-Jan-03 11:03
Stefan Pedersen21-Jan-03 11:03 
GeneralQuestion about NEW throwing in MFC app Pin
FrankRizzo21-Jan-03 10:38
FrankRizzo21-Jan-03 10:38 
GeneralRe: Question about NEW throwing in MFC app Pin
Michael Dunn21-Jan-03 10:55
sitebuilderMichael Dunn21-Jan-03 10:55 
GeneralRe: Question about NEW throwing in MFC app Pin
FrankRizzo21-Jan-03 11:11
FrankRizzo21-Jan-03 11:11 
GeneralTransparent Group Box , huh?! Pin
brianwelsch21-Jan-03 10:11
brianwelsch21-Jan-03 10:11 
GeneralRe: Transparent Group Box , huh?! Pin
dazinith21-Jan-03 10:30
dazinith21-Jan-03 10:30 
GeneralRe: Transparent Group Box , huh?! Pin
Brit21-Jan-03 14:00
Brit21-Jan-03 14:00 
GeneralCatching maximize of an app Pin
The Lady of Shallots21-Jan-03 10:04
The Lady of Shallots21-Jan-03 10:04 
GeneralRe: Catching maximize of an app Pin
AlexO21-Jan-03 10:14
AlexO21-Jan-03 10:14 
GeneralRe: Catching maximize of an app Pin
The Lady of Shallots21-Jan-03 10:21
The Lady of Shallots21-Jan-03 10:21 
QuestionSimulate a keypress, or go to the next field? Pin
dazinith21-Jan-03 9:54
dazinith21-Jan-03 9:54 
AnswerRe: Simulate a keypress, or go to the next field? Pin
Joaquín M López Muñoz21-Jan-03 9:55
Joaquín M López Muñoz21-Jan-03 9:55 

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.