Problem with windows 98 and MFC
-
I did a project in VC++ 6.0 in windows XP but when I run the same exe in windows 98, the default font type and size of the modal dialog box changes. (The font in the caption bar of the main frame and child frame is the default) Wut is the problem? Should i give default font type and size in DoModal() function?
-
I did a project in VC++ 6.0 in windows XP but when I run the same exe in windows 98, the default font type and size of the modal dialog box changes. (The font in the caption bar of the main frame and child frame is the default) Wut is the problem? Should i give default font type and size in DoModal() function?
-
In Window XP if a Window function has a string argument,it manipulates or handles the string as Unicode (even if the code is not compiled as unicode).This is not in Window 98
sunit5 wrote:
In Window XP if a Window function has a string argument,it manipulates or handles the string as Unicode (even if the code is not compiled as unicode).This is not in Window 98
You are right in windows XP, the string args are treated as unicode wheather it unicode or not (internally). But little correction you Sir!.. users problem is not related with UNICODE.
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV
-
I did a project in VC++ 6.0 in windows XP but when I run the same exe in windows 98, the default font type and size of the modal dialog box changes. (The font in the caption bar of the main frame and child frame is the default) Wut is the problem? Should i give default font type and size in DoModal() function?
Arrun wrote:
Wut is the problem? Should i give default font type and size in DoModal() function?
That’s the common Problem.. As Font Setting is different for different computer /OS + User can easily change it (By applying new theme, changing display setting etc) .. It is always good to set your own default font when designing software...
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV