CString::FindOneOf is not DBCS-aware in min CRT build. It is implemented in terms of _cstrpbrk, which only uses _cstrchr, which is not DBCS-aware for the...
Hi all, I made a project with the ATL wizard, setup the communication and created an ActiveX control. I then began adding wtl code and got things to compile...
Hi, I'm using the docking window framework shows in http://www.codeproject.com/wtl/wtldockingwindows.asp?df=100&forumid=3244&exp=0&select=434916 I tried to put...
OK, I know this is a long shot but has anyone ever tried using ATL/WTL using the Watcom C++ compiler? I'm sure another user here has had success using ATL/WTL...
Robert I don't recall any discussion here about the Watcom compiler specifically. My suggestion would be to just go ahead and try it on some simple samples and...
Chris, Not available yet, although the final beta is out on MSDN downloads. I believe it will be released when Windows Server 2003 is released (April 24 - [1])...
There's a very interesting article on a Mixed MFC/WTL project at code project. Sorry the Code porject server seems to be down so I can't give you the URL but...
OK, this is a little off-topic, but ... can anyone point me to a primer on how to use ATL control versioning? I need to change the interface for a control...
If you mean an application that allows only one instance to run at a time, see the documentation on WinMain. It shows one possible solution when documenting...
IT> It shows one possible solution when documenting hPrevInstance IT> parameter. That only works for 16-bit apps. Under Win32, the hPrevInstance parameter is...
5165
wtl@yahoogroups.com
Mar 5, 2003 4:06 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the wtl group. File :...
Just uploaded a sample from the WTL tutorial that shows one way of doing it, wrapped in a class CSingleInstanceMgr. Best regards, Paul. ... From: "Matthew...
... Have you actually read the documentation? It states that hPrevInstance is always NULL for Win32 apps, and demonstrates a way of doing without. That's the...
To help with that nasty long URL, use http://www.sellsbrothers.com/tools/index.htm#urlrun. Or just go to MSDN and search on "hPrevInstance" - the WinMain...
Igor, Sorry, I thought you were advocating _using_ hPrevInstance. My misunderstanding... -- Best regards, Matthew ... IT> Have you actually read the...
... I am currently working on just such an application. I know that at least one solution has already been suggested to you, which may well be what you want....
It's in the Temp folder in the files area [1]. John [1] http://groups.yahoo.com/group/wtl/files/Temp ... From: Ryan Ginstrom [mailto:ginstrom@...] ...
5176
Mpak
mpak@...
Mar 6, 2003 3:30 pm
Hello The easiest way to make an application - "single instance only" is to add code to your WinMain function int WINAPI _tWinMain(HINSTANCE hInstance,...
... This is a beautifully simply solution if all you want to do is to prevent the second instance from running. However, if you want the second instance to...