Hi, I can only hope that at some point in the future a cracker-enabled wizard will be available, but until that point it would be very useful if the atlcrack.h...
582
Pascal Binggeli
pascal.binggeli@...
Jan 3, 2001 6:30 am
Happy new year! For those that are interested I've uploaded a RAW documentation of the WTL classes. The documentation has been automatically generated with...
583
cscaper@...
Jan 3, 2001 7:04 am
Hello, I have an WTL SDI application with an automation interface. What I'd like is for the UI to appear when it's being accessed via automation and not just...
584
Pascal Binggeli
pascal.binggeli@...
Jan 3, 2001 11:52 am
I'm porting the layout manager written by Erwin Tratar (http://www.codeproject.com/dialog/layoutmgr.asp) to WTL. I'm to the phase of finishing the port and...
585
Burgess, Peter N
peter.n.burgess@...
Jan 3, 2001 1:23 pm
To have the UI appear when the app is activated via automation, simply comment out the line setting bAutomation to true in WinMain's command-line token ...
586
Tim Tabor
tltabor@...
Jan 3, 2001 3:31 pm
Is this similar to WTL's CDialogResize ? // tim ... From: Pascal Binggeli [mailto:pascal.binggeli@...] Sent: Wednesday, January 03, 2001 6:56 AM To:...
587
Pascal Binggeli
pascal.binggeli@...
Jan 3, 2001 3:58 pm
Is this similar to WTL's CDialogResize ? Maybe I don't known about it! Where to find it? Pascal...
588
Tim Tabor
tltabor@...
Jan 3, 2001 4:03 pm
WTL 3.1 - AtlFrame.h // t...
589
Francois Leblanc
francoisl@...
Jan 3, 2001 7:58 pm
I'd be very interested, email me when you're done. The CDialogResize does not provide enough facilities to create an efficient resizing dialog. Such as the...
590
Tim Tabor
tltabor@...
Jan 3, 2001 10:05 pm
I don't have any docs to offer, but this will align the OK button to the right of the dialog when the dialog is resized horizontally: ...
591
Burgess, Peter N
peter.n.burgess@...
Jan 5, 2001 9:10 am
Is there an example I can look at? Specifically, how do I handle the messages from the dialog? Are there any gotchas? Thanks PeteB...
592
Pascal Binggeli
pascal.binggeli@...
Jan 6, 2001 3:30 pm
I got the point for the namespace and disk location. My thought was just to leverage the burden for each developper. I don't like having to change the visual...
593
gabriel@...
Jan 10, 2001 10:53 pm
I have used Videosoft's VSFlexGrid ActiveX control from ATL\WTL applications. Most of their documentation assumes you will be using the grid control from...
594
Christian.Lipp@...
Jan 15, 2001 2:59 pm
Hello! I am using WTL 3.1 and receive accelerators for disabled items. This was a known issue in WTL 3.0, but in the readme.txt of 3.1 ... The command should...
595
Nenad Stefanovic
nenads@...
Jan 16, 2001 12:29 pm
Hi Christian, So, are you saying that blocking accelerators doesn't work for you? You should put CHAIN_MSG_MAP to CUpdateUI before your...
596
Burgess, Peter N
peter.n.burgess@...
Jan 16, 2001 8:20 pm
If you create a list view control (CListViewCtrl) and turn on the header filter bar and also display icons in the header, when the header buttons draw, the...
597
Lipp Christian
Christian.Lipp@...
Jan 17, 2001 7:48 am
Hi Nenad, I could find out what I missed: In CUpdateUIBase.OnCommand the accelerator was not eaten because m_bBlockAccelerators was false, which means that I...
598
Nenad Stefanovic
nenads@...
Jan 17, 2001 9:07 am
Oh, yes. It was implemented that way to preserve compatibility with the previous version of WTL. Cheers, Nenad ... From: Lipp Christian...
599
Teatime
teatime@...
Jan 18, 2001 11:43 am
Hi, I want to pretranslate message in a CEdit ctrl in parent like it is in a InternetExplorer when you push "Enter" when you finished typing URL for example....
600
simon-pierre.cadieux@...
Jan 18, 2001 12:17 pm
You are calling recursively PreTranslateMessage(). Simon-Pierre ... From: Teatime To: WTL Sent: Thursday, January 18, 2001 8:42 AM Subject: [wtl] Pretranslate...
601
s.h.gullach@...
Jan 18, 2001 3:49 pm
Hi WTL lovers I have a modeless Dialog that removes itself when done. The doc. says that I can call delete this; from OnFinalMessage, but the DestroyWindow()...
602
Tim Smith
tim.smith@...
Jan 18, 2001 4:53 pm
Here is a basic roadmap of what you need to do. First, inside your dialog box class, you need make a new version of DialogProc. I just copied the DialogProc...
603
Lipp Christian
Christian.Lipp@...
Jan 19, 2001 10:24 am
Hi Nenad! Just a request for a missing function in CHyperLinkImpl: I created a static text in the dialog editor and subclassed it to CHyperLink. Then I wanted...
604
Ken Ostrin
keno@...
Jan 22, 2001 5:44 pm
I have a dialog which has an Internet Explorer ActiveX control embedded into the dialog resource. My dialog class is derived from CAxDialogImpl, and I create...
605
Ken Ostrin
keno@...
Jan 22, 2001 7:12 pm
Ok, I have more info now. I can make it work in Release only if I #define ATL_DLL in the preprocessor. This makes my app dependent on ATL.DLL however, a ...
606
John Kienitz
johnk@...
Jan 22, 2001 7:17 pm
Do you try to initialize the Browser control from resources? I have seen this fail on various platforms in the Release builds. Try editing the resources in...
607
Brandon Corfman
bcorfman@...
Jan 23, 2001 1:15 pm
Christian, There is a public variable m_tip which is used to set the hyperlink text directly. Don't feel bad, I missed it the first time through the source as...
608
Rich
legalize@...
Feb 2, 2001 5:20 am
Since the WTL/ATL app-wizard only generates EXEs, what's the best way to use WTL to create a dialog in a DLL project? I'm trying to write a library where the...
609
carlos.ferraro-cavall...
Feb 2, 2001 9:41 am
On Thu, 1 Feb 2001, Rich wrote: [...] R> implements a dialog written in WTL. Should I just use an ATL R> DLL project and then modify the skeleton into a WTL...
610
sbl@...
Feb 4, 2001 4:09 am
I am trying to get tooltips to work in a dialog application over a static control. In maindlg.h I declare: CToolTipCtrl ctipQStatus And in OnInitDialog: RECT...