If you create an MDI app and maximize one of the client windows, all of its control buttons dissapear (min, max, restore). The only way to "restore" from this...
Today I was browsing the resources of the dll's on my computer (I was looking for some icons) and in the atlobj.dll I found a picture of the ATL team. Nice to...
OK then, here is some code that creates a progress bar in status bar in a MDI child window. I don't know if that will answer all the questions, but I hope it...
Hi Sylvain, CEdit is just a wrapper class for the edit control. It doesn't have a WinProc, so it doesn't receive messages. If you want to receive messages in ...
Actually, I think that this is a good idea. I was going to suggest something like this if MS decided to stop supporting WTL. I am not sure our MS will go for...
Hello Nenad and WTL developers, We really need to know the direction of the WTL project. It is clear by now that it will not be part of MS main development...
Hi Paul, Thanks you. I'm sure that WTL will be both ATL3 and ATL7 compatible as long as needed. The magic of #ifdefs can go a long way ;-) Cheers, Nenad ... ...
Hi, How i can trap the VK_RETURN from a CEdit derived class. I do this easily with MFC, but i can't do it with WTL. My edit box is placed in a rebar band. ...
Hi Christian, WTL will not be integrated with ATL 7. ATL 7 will not have any new classes for the app and UI development. New versions of WTL will be compatible...
On http://www.devx.com/upload/free/features/vcdj/2000/09sep00/rg0009/rg0009.asp someone can read an article from Dr. Richard Grimes about ATL Server and also ...
www.clipcode.com has vanished, and I dont have a copy of their excellent WTL docs. If anyone could email those to me, I would greatly appreciate it. ...
Hi Christian, That is not easy to do. Which messages do you want to process? Maybe you can use WM_FORWARDMSG to pass them to the parent, but I can't see why...
Dear Nenad, Has anybody come across with this. Why i need to change some of the directory settings before compiling stuffs fro XML in Visual studio. Like when...
This may be entirely useless, but in Visual Basic I could create a progress bar (as part of the form) and move it over top of the status bar so that it had the...
Dear All, Any idea! how to create controls in the WTL Status bar in the Child View Frame window. I need to create a checkBox and a Explorer type of TreeView...
I have a mainform which contains a dialog based view and want to process certain messages of the view in the parent. The view is derived from CDialogImpl<>. 1....
Hi K M, The only reason for order to matter would be if you have same include files, but different versions, in more than one include directory. Order would...
Hi Andy, No, there is no equivalent of AfxGetMainWnd(). WTL doesn't assume that you must have only one top-level window, so there isn't a method like that. If...
WTL group I'm really not sure of the real cause of this error, plenty of theories, but I was hoping someone's experience or knowledge could shed some light,...
Does WTL have a GetMainWnd() function that will give you a pointer to the main window? I need to be able to reference the main window's methods in my WTL...
Hi, How to create a controls say a button / checkbox or more generally i want a List box with a treeView just like we have one for the windows explorer in the...
I am not able to create this control in a dialog. I have commented the Declaration for DateTimeCtrl in the Header file as it not able to get the relative...
Hi, I've added print preview functionality as per the BitmapView example. My SDI view, however, is not bitmap based, but rather involves many standard vector...
Hello! Thanks for the help concerning my last area, and hope this too will be as simple of a fix. The problem area I'm being shown deals with focus/forground...
Hi, I have some dialogs which I use in many of my projects. Can I create a lib which can contain all the dialogs and the classes and do a static link and use...
Hi John, ATL is available in a separate version in the Windows CE Toolkit. WTL doesn't currently support WinCE. You can, however, try to modify WTL files and...
Hi Franky, WTL uses the usual Windows include files, via windows.h. You can also use older versions of those same files that come with VC++ 6.0, if you don't ...
Hi all, I want to implement a browser in a view and catched the events(as BEFORENAVIGATE2) from it. I used the default HTML view created by the WTL's wizard. ...