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...
611
bcorfman@...
Feb 5, 2001 4:48 am
SBL, You'd think displaying a tooltip would be simple, huh? Not really. 1) Bring up the properties for your static control in the resource editor. Make sure...
612
bcorfman@...
Feb 5, 2001 4:55 am
Whoops. In my cut'n'paste mode, I used the variable m_tip in the OnMouseMessage function instead of your ctipQStatus. It's almost midnight, so I guess I'm...
613
sbl@...
Feb 5, 2001 4:54 pm
Brandon, That did it. I had figured out the IsWindow/RelayEvent (I had put it in PreTranslateMessage), but I was still lacking the Notify selection on the...
614
tlandry@...
Feb 7, 2001 10:21 pm
Does anyone know if it is possible to activate the autocomplete tooltips in vc6 for WTL? tks Ted...
615
Rich
legalize@...
Feb 7, 2001 10:28 pm
In article <95shpa+nkev@eGroups.com>, ... After compiling your project the WTL headers should show up in the "external dependencies" folder. If you drag the...
616
Marc Brooks
lucis@...
Feb 7, 2001 10:38 pm
I STRONGLY recommend you grab Visual Assist, which will do this among other cool things (case correcting, tool-tips for all visible symbols, highlighting...
617
benzylrechner@...
Feb 10, 2001 9:53 am
Hello, I'm new to C++ and WTL. What's the best way of getting cut (Ctrl-X) to work in an edit box on a dialog? ID_EDIT_CUT doesn't seem to get to the dialog...
618
Tim Tabor
tltabor@...
Feb 10, 2001 10:05 am
Huh? If you create a dialog and add an EDIT control to it, ctrl+x works straight away. What's different about your implementation? // tim...
619
benzylrechner@...
Feb 10, 2001 10:16 am
The edit box is on the main dialog based form. (sdi application, view window=Form(dialog based)). Yes, if you put it on say the about dialog it works, but it...
620
Tim Tabor
tltabor@...
Feb 10, 2001 11:25 am
Should work the same way. You'll need to remove the ID_EDIT_XXX accelerators from your accelerator table (look in your ResourceView tab), so these keystrokes...
621
benzylrechner@...
Feb 10, 2001 8:55 pm
Ah yes that works thanks Tim ... doesn't ... (Ctrl- ... All my ... (m_view) ... uMsg, ... focus...
622
Jim Johnson
jimj@...
Feb 11, 2001 2:30 am
Well, thanks to the Yahoo takeover, I can't figure out how to access the WTL archives anymore. Anyone else figured this out yet? And now, the question I'd be...
623
Brandon Corfman
bcorfman@...
Feb 11, 2001 5:32 am
Jim, I had to click on a "Convert groups" hyperlink in the upper right of the WTL Group home page in order to convert my eGroups to YahooGroups. Brandon...
624
Nenad Stefanovic
nenads@...
Feb 11, 2001 10:20 am
I better not say anything - I don't want to reveal all secrets ;-) Well, it's in between, and WTL will continue to ship in the Platform SDK. Cheers, Nenad ... ...
625
leon
lf21@...
Feb 11, 2001 4:30 pm
Hi all, I've encountered what seems to be a bug to me. I have a frame CFrameWindowImpl derived frame window. For the client window (m_hWndClient) i have a...
626
Pascal Binggeli
pascal.binggeli@...
Feb 11, 2001 5:53 pm
Dear all (or the WTL team at Microsoft (or Nenad :-) ) I would like a modification of the base class to declare some methods as virtual. Take the...
627
andreas.magnusson@...
Feb 12, 2001 7:48 am
Well, the OnSize implementation is "correct" since the code looks like this: T* pT = static_cast<T*>(this); pT->UpdateLayout(); Perhaps it would be enough to...
628
carlos.ferraro-cavall...
Feb 12, 2001 8:36 am
... like ... or you ... small ... control. ... I must say I agree that the mechanim used by ATL/WTL is better than virtual calls: you skip those 4 bytes in the...
629
Pascal Binggeli
pascal.binggeli@...
Feb 12, 2001 8:39 am
ooops I missed that point Thanks Pascal...
630
billa@...
Feb 12, 2001 3:38 pm
I am trying to implement one of those snazzy interfaces where the frame and title bar are removed and the window is tiled with a background bitmap. This is in...
631
Spires, Sandi
sandi.spires@...
Feb 12, 2001 6:49 pm
I've created the standard WTL MDI application that uses CCommandBarCtrl to replace the standard menu. But now, when an MDI child is maximized, I no longer have...
632
Nenad Stefanovic
nenads@...
Feb 13, 2001 11:47 am
Hi Bill, Overlapped windows always have a title bar. Try creating your window using WS_POPUP style instead. You will also have to handle some things that ...
633
Nenad Stefanovic
nenads@...
Feb 13, 2001 11:50 am
Hi Sandi, Unfortunately, command bar doesn't fully support MDI. Buttons are not supported, and that is the reason that they are missing. You will find a little...
634
Rich
legalize@...
Feb 13, 2001 7:57 pm
I tried to write a simple dialog-based WTL application that displayed some Direct3D output and I'm a little confused. I deferred device creation until WM_PAINT...
635
Steve Maier
maier@...
Feb 13, 2001 8:11 pm
Well setting the bHandled variable to true means that you processed the paint message and you do not want the default routines to be called. If you want to do...
636
Rich
legalize@...
Feb 13, 2001 8:23 pm
In article <F1953cMnA0VYqMhmhVH0000a77b@...>, ... Ah... ValidateRect()... I wasn't doing that, that's probably the problem I'm having. ... So you do...
637
Steve Maier
maier@...
Feb 13, 2001 8:46 pm
The only thing that I had to do to make sure that initializing in the InitDialog was ok was to add a variable to say that drawing was paused/disabled. Then in...