Hi, You may be interested by this article : WTL CString class <http://www.codeproject.com/useritems/WtlStdString.asp> implemented with the Standard C++ Library...
... If you read the MSDN documentation closely, it seems that you cannot combine the SF_UNICODE and SF_RTF flags, so keeping it ASCII/MBCS seems to be the only...
Hello I tries to create a application for PocketPC with menues and tools in the commandbar. And how I tries the tools just show up. The menues are there but...
Some of dialogs in my application is nearly the same. So I made a base class for them. This base class contained thier common functions. I use CHAIN_MSG_MAP to...
I've created a vertical CScrollBar control (as a child of MDI child frame) for my client view (also a child of MDI child frame) . The VScrollbar is initialized...
... For some reason, SetScrollInfo only disables the scrollbar if it is visible. As a workaround, you can either disable the scrollbar explicitly, or wait...
I was having a look at the WTL CVS repository and see that several fixes have been made since the last official release.
Would it be a good thing to use the...
Hello I have written a socket server. But this had no GUI and so didn't use WTL and used STL mostly. But now want to create a GUI client. Has anyone created...
There aren't any socket classes in WTL 7.5 -- I don't know about WTL 8. ATL 7 has CSMTPConnection, which is a socket-based SMTP client class; it may give you...
ATL includes support for autogenerated SOAP classes (SOAP is XML embedded in a HTTP msg). Just right click and Add Web Reference, it will then autogenerate...
Hi, As far as I can see, there is no way to add RBBS_NOGRIPPER or any of the other ReBar styles to a rebar using the wizard-generated framework (which uses the...
Roel Vanhout
rvanhout@...
Oct 18, 2006 8:12 am
13980
... When I needed to add RBBS_GRIPPERALWAYS (which was necessary because of a Rebar bug), I did it by getting the band and modifying the style: CReBarCtrl...
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 : /ccommandline.zip ...
wtl@yahoogroups.com
Oct 19, 2006 9:31 am
13982
Hello, I've uploaded an MFC control that I've found usefull and ported to WTL. Its a complete custom commandline control (without even a edit box ctrl !) with...
You can also use CReBarCtrl::LockBands, which essentially does the same thing. I will check if there is a way to easily specify band styles somewhere. As for...
Hi Richard, I think it is OK to use CVS files. We are trying not to have any big breaks in the code. Sometimes, something will be less than perfect, but I...
Just as I wrote this, I discovered that I made a mistake in the support for Secure CRT by specifying the incorrect length of the CString buffer. Oh, well, I...
MDIClient has a default ex-style WS_EX_CLIENTEDGE. But I prefer the WS_EX_STATICEDGE style. I tried the following code when subclassing the MDIClient created...
Hi, I was trying to implement a full screen mode for my program. I used the following code to make the switch: RECT rc; SystemParametersInfo(SPI_GETWORKAREA,...
Hi He Shiming, I suppose you target a Windows Mobile device. Deriving your frame from CFullScreenFrame, and chaining the message map should do it. See the...
What is your target? _____ De : wtl@yahoogroups.com [mailto:wtl@yahoogroups.com] De la part de He Shiming Envoyé : mercredi 25 octobre 2006 09:11 À :...
... It's of course Windows on personal computers. I'm thinking about a Internet Explorer-ish full screen mode. Forgive me but I didn't say anything about...
... All you have to do is make your window fill the primary monitor, and Windows will automatically put your window above the taskbar. To get rid of your...
Hi He Shiming, My sorry:-(, I didn’t think it could be an issue on Win32 platforms: ModifyStyle(WS_TILEDWINDOW, NULL); // remove all framish styles CWindowDC...
... styles ... (HORZRES),screenDC.GetDeviceCaps(VERTRE ... and ... I can see it's a window style issue rather than calculated rectangle. Anyway, it worked, so...