Hi, You may be interested by this article : WTL CString class <http://www.codeproject.com/useritems/WtlStdString.asp> implemented with the Standard C++ Library...
13966
Bjarke Viksøe
bviksoe
Oct 2, 2006 12:52 pm
... 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...
13967
hallgrenjohan
Oct 3, 2006 1:46 pm
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...
13968
hallgrenjohan
Oct 3, 2006 6:30 pm
... OK, I had to do it in two steps: CreateSimpleCEMenuBar(IDR_MAINFRAME, SHCMBF_HMENU); CreateSimpleCEToolBar(IDR_TOOL); /Johan...
13969
cnkknd
Oct 4, 2006 3:15 pm
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...
13970
Jim Barry
jim_barry.geo
Oct 4, 2006 3:49 pm
... You need CHAIN_MSG_MAP_ALT. For example: BEGIN_MSG_MAP(DerivedClass) // ... ALT_MSG_MAP(1) CHAIN_MSG_MAP_ALT(BaseClass, 1) ALT_MSG_MAP(2) ...
13971
avewtl
Oct 10, 2006 12:41 am
You'll have to call SetScrollPage() before calling SetScrollSize()....
13972
avewtl
Oct 10, 2006 12:43 am
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...
13973
Jim Barry
jim_barry.geo
Oct 10, 2006 11:11 am
... For some reason, SetScrollInfo only disables the scrollbar if it is visible. As a workaround, you can either disable the scrollbar explicitly, or wait...
13974
Richard Butler
dj_deipotent
Oct 10, 2006 7:27 pm
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...
13975
owen nirvana
flyincosmic
Oct 10, 2006 9:55 pm
I hope print it to a check. only data, no lines. thx...
13976
Angus Comber
anguscomber
Oct 14, 2006 4:23 pm
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...
13977
Jeff Henkels
jhenkels
Oct 16, 2006 6:16 pm
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...
13978
Gordon Smith
schmoo2k
Oct 17, 2006 11:50 am
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...
13979
Roel Vanhout
rvanhout@...
Oct 18, 2006 8:12 am
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...
13980
Jim Barry
jim_barry.geo
Oct 18, 2006 11:25 am
... 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...
13981
wtl@yahoogroups.com
Oct 19, 2006 9:31 am
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 ...
13982
Noel Frankinet
gistek2000
Oct 19, 2006 9:42 am
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...
13983
Nenad Stefanovic
nenad_stefan...
Oct 19, 2006 10:33 am
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...
13984
Nenad Stefanovic
nenad_stefan...
Oct 19, 2006 10:37 am
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...
13985
Nenad Stefanovic
nenad_stefan...
Oct 22, 2006 11:56 am
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...
13986
avewtl
Oct 23, 2006 9:42 am
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...
13987
He Shiming
billholtsh
Oct 25, 2006 5:13 am
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,...
13988
Alain Rist
arnavpoch
Oct 25, 2006 6:57 am
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...
13989
He Shiming
billholtsh
Oct 25, 2006 7:13 am
... message map ... I'm not targeting mobile platforms. Any other suggestions? Best regards, He Shiming...
13990
Alain Rist
arnavpoch
Oct 25, 2006 7:37 am
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 À :...
13991
He Shiming
billholtsh
Oct 25, 2006 8:27 am
... 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...
13992
Jim Barry
jim_barry.geo
Oct 25, 2006 11:30 am
... 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...
13993
Alain Rist
arnavpoch
Oct 25, 2006 12:21 pm
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...
13994
He Shiming
billholtsh
Oct 25, 2006 1:33 pm
... styles ... (HORZRES),screenDC.GetDeviceCaps(VERTRE ... and ... I can see it's a window style issue rather than calculated rectangle. Anyway, it worked, so...