I know I can use USES_CONVERSION, set _acp to UTF8 and then call T2A, CString seems to have some auto conversion in its CStringA/W Is there a way I can set...
... You could set g_pfnGetThreadACP to point to your own function that returns CP_UTF8. Naturally, this will affect anything that uses _AtlGetConversionACP. --...
Thanks so much Igor, I did try many ways but I still got "type mismatch" error. I finally decided not to call the Invoke method and made a common interface...
Hi I have developed a small program that hooks on msn. but is not compatible with Msn7.0. Can somebody guid me in this issue. On more thing, I want to...
hai frnds, i am an engineering final year student.i am doing my project in vc++.(peer2-peer commn).i need help for vc++.i can't understand the CSocket...
CSocket is a MFC class, it's documentation is at : http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/h tml/_mfc_csocket.asp VC++ is...
Try this. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_MFC_CSocket.asp Peter ... hai frnds, i am an engineering final year ...
We had our app set up to be MBCS, with a couple of Unicode Functions used for special windows. We already were delivering 2 different exe's one for Win98 and...
Have a look at what it takes to use the unicode dll in Win98. It's not as easy as defining unicode. It's spelled out in the MSDN docs. Bill ... -- Bill Nalen ...
You've got delayimp.lib in the link line twice (with different capitalization), but that should not cause a problem. Is uxtheme.dll present on the Win98...
Bill Thanks, I already have and as I mentioned, we have already been using unicode, just more sporadically (ie calling SetWindowTextW manually and using...
I noticed the delayimp.lib and will take that out, I don't think that's the problem either. Uxtheme.dll doesn't need to be present, because it's delay loaded...
Hi WTL Gurus, I got a runtime-error on my wtl program last night. the error is not user-friendly.so I want catch exception and show some well format message. ...
Hi Peter, ... Why don't you use Virtual PC to install Win98 as a "guest" on your development machine? It comes with MSDN Professional, and can be a godsend for...
I did that, and the Virtual PC runs fine for 2k, NT4 but for 98 it constanly crashes and needs to "restart" the virtual pc :( Peter ... From: Anna-Jayne...
i use vmware for many OSes even non MS without any probs. of course it isnt free, but it works. mike ... This message was sent using IMP, the Internet...
... I believe the default for WTL projects is still to turn off exception handling. You will have to turn that back on (/EHac I believe). To me, it seems to be...
Hi folks, I think I have an interesting one here: Recently I decided to map the space bar as an accelerator key in my program. This is because it is a media...
Thanks Igor, That makes sense. I am calling TranslateAccelerator myself, but inside of CFrameWindowImpl so I didn't look that deep yet. Here is what I did to...
Thanks for reading my message. I have a problem with SetFocus and SetSel functions. I got no syntax err, but the control doesn't do anything after I called...
Hello all. In the past few months, I've been researching and programming for Unix systems (i.e. Linux). As many of you might know, UNIX GUI applications are ...
Hello all, Some time ago I've seen on the sourceforge WTL forum that someone has developed a WinInet WTL wrapper library, they were supposed to upload it ...
... syntax ... function ... I'd suggest the following instead of the above SetFocus and do a debug build. If it doesn't assert, the problem isn't here. HWND...
Igor, and all fair citizens of WTL land, I sort of spoke too soon. When this bug was reported, I assumed that incremental search used to work. It looks like...
Hi Folks, My program is originally a single EXE. The project became quite large during the development, and I figured that it could be a good idea to separate...
Hi, all! Did anybody do Customization Dialog like IE have? I saw realization for MFC on codeproject.com http://www.codeproject.com/docking/toolbarex.asp Maybe...