Hi, when am trying to use the WTL ,geting the flowing assertion , can some help me out in solving this problem Debug Assertions Failed! File :atldlgs.h line...
I want to create an application that has a fixed window on each side of the screen and in the middle can display different dialogs. The fixed windows will...
Hi Jeff, I don't see how this has anything to do with command bars. Sounds like all you need is an SDI app with a "view" that is a container for different...
Hello Mike, Thanks for surveying the possibilities. The reason I initially thought of command bars is because when I used MFC in a similar project some years...
Hi Jeff, Of course, those were just some of the possibilities, but hopefully relatively simple ones. One thing about WTL compared to MFC is that is brings you...
... This should be pretty easy. Just create the side windows as children of the frame window, and implement an UpdateLayout member function in your frame ...
Hi and happy new year! I want to make my toolbars look smarter so the ALPHA wtl sample looks just the ticket. I would prefer if the toolbar was sourced from a...
here's how it's done using GDI+ // somewhere after CreateSimpleToolBarCtrl is called... Gdiplus::Bitmap* gbm = Gdiplus::Bitmap::FromFile(L"res92;\test.png"); ...
Relook your Old and New Native Applications with a Ribbon UI under Vista or Windows 7 cheers, AR [Non-text portions of this message have been removed]...
http://www.codeproject.com/KB/vista/RibbonUI.aspx sorry for the missing link :( ... From: Alain Rist To: wtl@yahoogroups.com Sent: Tuesday, January 26, 2010...
Hi Alain, thanks a lot for your WTL articles. This help a lot. Strange I didn't saw the post of this article at CP 3 days ago. Anyway got my 5 :) Yarp...
wow, you've done some work there Alain! personally i find the ribbon terrible. It wastes too much space, it isn't well behaved with the keyboard, it just...
... Only if you are using Comctl32.dll version 6. See the remarks section in the above topic. The ATL/WTL AppWizard will insert a manifest dependency in ...
Thanks, I've added a manifest and it worked. I've also found a "special note" about button in a different MSDN article, in case anybody reads this thread in...
if you select an object into a DC, then delete the object before selecting the previous object back into it, is it a memory leak? hBrushOld = (HBRUSH)...
here's an easy way to check for GDI leaks open the task manager, switch to PROCESSES tab, activate the "GDI Objects" column, then find your program and observe...
I found that neglecting to not re-select the previous object did NOT cause my memory leaks. I have 2 that I have found right now. 1) was obvious, I would call...
... Try that pattern: { Get_GDI_Object; <some code> DeleteObject; } -> forget about it! Better is using the RAII-Idiom with the WTL GDI-wrapper classes ie....
I have add the CScrollImpl to the CMainFrame, but the horizontal scroll bar's position are under the status bar, and the rebar (both menu & tool bar) are...
... How did you go about installation? I tried the blurb in the Readme.htm file on manual installation. This resulted in nothing happening after selecting WTL...
I considered myself lucky in finding this thread having just installed VS2010 Release Candidate. The updated files for include and AppWizard appear to work as...
To compile the Ribbon.xml file you NEED the Windows 7 SDK (as VS2010 distributions miss the necessary uicc.exe tool) AND you must add the path to your uicc.exe...
Hello! If you're using WTL in your projects, probably you're know and using WTLHelper and WTLWizard - these tools was described on codeproject.com some years...