I generated a MDI project from the WTL7 wizard(originally done in VS6) I compiled this in VS.NET and the code executed OK. When I used the /clr switch. It...
Is there any specific reason to compile the project for CLR?????? Strauss ... From: <dworthem@...> To: <wtl@yahoogroups.com> Sent: Monday, February 03,...
I found the answer elsewhere. The problem is that HIMAGELIST is only forward declared as a struct in the windows header files. The solution is to put an...
The solution is simple, read the source codes for CPropertyPageImpl; and you will find notification message handlers to override such as int OnSetActive() { ...
Hello I am using an ATL control which generates an alarm dialog. Whenever the time comes round for the alarm dialog I see this error: The instruction at...
Hi All, I use ATL 7 created a full control with attributes, then added WTL header files. However, I got compile error with "atlctrls.h" and "atldlgs.h" because...
Hi, Frank - Try searching the message archives on this topic (CComModule, or "ATL 7"); there have been several discussions on how to use WTL with ATL 7. You...
Angus, How are you invoking the third party control ? Off hand sounds like your passing bad memory location. To debug, put a break point in the debugger right...
The dialog is NOT invoked by my application. Basically the system clock gets to eg 2 pm on Wednesday and then their ATL control generates an alarm dialog. ...
See my reply to a kevin request: the message id is 4398. With TB_ADDSTRING try to use this string instead: "|New|Open|Save|Cut|Copy|Paste|Print|About||" Note...
First of all, I assume that IODiary.EXE is your application. Is that correct? Second, does the error message come up literally with "My application name -...
The FAQ for the Windows XP design guidelines say that MS will consider releasing the source versions of the new 24bit colour / 8 bit alpha XP standard toolbar...
I have a CReBar in my SDI app that contains a dialog with two edit control, a button and a combobox. The problem is that when I click on any part of it, it...
Thanks Brandon, By "Control" property in the dialog, do you mean the "Control" option in the "more styles" tab of the dialog properties box. If so, that's set...
Rob, I don't believe it's the message map. The advice I gave you was for VS.NET. Setting the "Control" option works for that version. But reading your reply,...
Once again, many thanks, Brandon. That's about par for the course with Microsoft :-( I can't find any reference in the MSDN. I'll dig around the internals when...
Hi there , I'm trying to create custom tooltip for CTreeListView ( Bjarke Viksoe) and I realize that subclassed control cannot use ToolInfo which have next...
hi rob, Isn't this the default/expected behaviour of a dialog? I would guess you would have to handle either the dialog's WM_MOUSEACTIVATE or WM_LBUTTONDOWN...
Or WM_SETFOCUS and set the focus to the WPARAM value... (BTDT) Ciao, Dee ... From: Roger Headrick [mailto:rdheadrick2@...] Sent: Thursday, February 06,...
Hello guys, I would like to place a edit control with a CUpDownCtrl attached in a View. However, I can't make the UpDownCtrl attach to a edit control even I...
Hiu Sing Ngai
hiusing@...
Feb 7, 2003 4:13 am
4939
Hello wtl I have this list view. Which gives me a NM_CLICK notification when selection changes using the mouse (i.e. you click on a list item). I need a...
Hi, Did you check the order of controls on your dialog resource ? Updown control must come after your edit control in order to use autobuddy. Regards, Ilker ...