Tagged Questions
The Windows Template Library (WTL) is an open source, object-oriented C++ template library for Win32 development. It is a lightweight alternative to the Microsoft Foundation Classes (MFC).
9
votes
5answers
12k views
How to add WTL and ATL to visual studio c++ express 2008
I start using the visual studio c++ express 2008 at home but there is no ATL in it.
How can I add ATL to visual studio c++ express 2008?
7
votes
5answers
700 views
How to write modern Windows software in C++?
I am very interested in how modern Windows software is written in C++ nowadays? I asked my friend who had worked on Windows software and he told that last things he worked with were MFC and then WTL. ...
3
votes
2answers
282 views
Should I be using SendDlgItemMessage or is there a wrapper for this in WTL?
I added a Listbox control to a dialog resource called IDC_LIST1. Should I be interacting with this control using SendDlgItemMessage(), or is there a better way with WTL? Here are my event handlers. It ...
3
votes
4answers
310 views
What is Microsoft using as the data type for Unicode Strings?
I am in the process of learning C++ and came across an article on the MSDN here:
http://msdn.microsoft.com/en-us/magazine/dd861344.aspx
In the first code example the one line of code which my ...
3
votes
2answers
692 views
Using WTL with Codeblocks
I want to try WTL, but problem is i can't use Visual Studio for this. So i've codeblocks on my side. Is there any way i can use WTL with codeblocks ? I mean configuration/settings that i need to do ...
3
votes
1answer
123 views
How can you allow a window in an MDI app to leave it's parent container w/Win32?
I have an MDI app. I would like to add an icon to the non client title bar of the child window that allows the window to float separately from the parent MDI container, allowing the user to take the ...
3
votes
3answers
891 views
How to diagnose Access Violation on application exit
I have an application that I'm trying to debug a crash in. However, it is difficult to detect the problem for a few reasons:
The crash happens at shutdown, meaning the offending code isn't on the ...
2
votes
2answers
163 views
What is the difference between ATL and WTL?
I know "WTL builds on ATL", but what does that mean in practical terms?
Is ATL a subset of WTL in terms of features? (i.e. are ALL features in ATL also present in WTL?) I notice Wikipedia states ...
2
votes
2answers
194 views
Should I use CString, basic_string<TCHAR>, or something else with ATL/WTL?
I've only learned a little bit of ATL in the last couple of days (after realizing how much pain pure Win32 is) and also learned about WTL and MFC, and from what I see, there are quite a few different ...
2
votes
2answers
436 views
C# Winforms Timeline control ( from WTL ? )
I need a timeline control for one of my projects (Winforms/C#)and Im really not sure how i should create one from scratch. I have some visual idea of what i want. Something similar to the link below
...
2
votes
1answer
387 views
C++ program not responding to tile/cascade window from task bar
I have a complicated program in C++ (hybrid of old-school Win32 and WTL) which does not respond to any taskbar tile/cascade request (i.e. right click on task bar and select "Cascade Windows" or "Show ...
2
votes
2answers
187 views
Confused by BEGIN_MSG_MAP and BEGIN_MSG_MAP_EX
I am tracing a bug and I suspect the root could be in the use of WTL macros. When sould I use *_EX and when normal macros. For BEGIN_MSG_MAP_EX there is a note in atlcrack.h
// Note about message ...
2
votes
3answers
914 views
flicker free tab control with WS_EX_COMPOSITED
I have a VS2008 C++ application for Windows XP SP3 developed using WTL 8.1. My application contains a tab control that flickers when the application border is resized.
My window hierarchy looks like ...
2
votes
2answers
3k views
How can I install WTL 8.0 Project Wizards in VS 2010?
I've downloaded the WTL 8.0 package and come to find the scripts to install App Wizards don't support VS 2010.
Does anyone know of updates scripts to support installation in VS 2010?
Thank you!
2
votes
3answers
836 views
Why is my owner-drawn combobox shown empty?
I'm subclassing a WTL combobox and I'm owner-drawing the items of the combobox. The control has the attributes CBS_DROPDOWNLIST | CBS_HASSTRINGS | CBS_OWNERDRAWVARIABLE and I'm using the mix-in class ...
2
votes
1answer
325 views
Visual styles on WTL CreateSimpleToolbar()
I have created WTL 8.1 project with the wizard. Visual styles are applied to menu and about dialog, but toolbar looks ugly. How can I make the toolbar look native in Vista/7?
2
votes
1answer
175 views
BEGIN_MSG_MAP_EX breaks Visual Studio 2005 intellisense?
I have a C++ application using WTL/ATL BEGIN_MSG_MAP_EX macros for message handling. I use some macros from atlcrack.h.
When we upgraded the projects to Visual Studio 2005, intellisense acts crazy. ...
2
votes
3answers
908 views
ActiveX in IE. Dialog Box not showing XP Visual Style
I have an ActiveX control in IE (7). When it shows a dialog box, the dialog box is not showing in XP visual style. I have tried embedding manifests to no avail. Anybody got any idea? by the way, the ...
1
vote
1answer
40 views
vc++ graphic perfomance
I want to build a obj to draw a realtime graph but I have performance limitations
size of graph is static.
in repaint the graph
I can redraw all the needed line.
I have other way that save the graph ...
1
vote
1answer
58 views
How to catch the “tab changed” event in a property sheet
How to catch and handle the notification about that the currently selected tab has changed in the class derived from CPropertySheetImpll? I added TCN_SELCHANGE handler to message map but a peoperty ...
1
vote
1answer
43 views
Using the system setup icon
I'm developing a windows application in C++. I use wtl. One of the application window's title bar should display a system setup icon as it is in a typical setup program. Could you please share a way ...
1
vote
1answer
52 views
The exception thrown from the property sheet pages' handlers
I'd like to catch and handle an excption by the top level application's try-catch block rather then inside the property sheet pages' handlers (for example, OnInitDialog handler). Thus, in the code ...
1
vote
1answer
226 views
WTL layout with resizing
I'd like to know how people with more WTL knowledge would creating something like this:
A dialog that is resizable (-> WS_THICKFRAME) that contains two 'areas'. One area grows in the y-direction when ...
1
vote
2answers
200 views
Use CString in console app when using VS Express
I have a problem when trying to use CString.
I have a console application written using VS2010Express. I have a piece of code I would like to use, but it uses CString. When I try to include the ...
1
vote
4answers
767 views
The best books to learn WINAPI, MFC, ATL, WTL
I'd like to learn programming with windows libraries.
Could You recommend me some technical books / tutorials.
I'm not looking for a book for beginers, lets asume that the
reader knows ...
1
vote
1answer
353 views
WM_SETFOCUS, get app that just lost focus
When my WTL C++ application is activated or gets the keyboard focus I need to determine the window handle of the application that was previously activated/had focus. However, the window handles ...
1
vote
2answers
392 views
Windows message loops and WTL
I'm trying to understand the way WTL works, and message loops are confusing me right now.
For example this code fragment: link
The window is first created and after that the message pump is started. ...
1
vote
1answer
170 views
How to create TitleAreaDialog using WTL or Windows SDK (no MFC)?
I am trying to create a TitleAreaDialog using WTL or Windows SDK (please no MFC).
From the google I am able to find these two links:
http://www.codeproject.com/KB/dialog/dialogheader.aspx (MFC ...
1
vote
1answer
402 views
How can I make a Slider (trackbar) to snap only to allowed values using WTL or WinApi
I need to make a custom control using WTL (or WinApi) that contains a slider that snaps only to some of the values. Let's say the range is 1 to 50, and i want to snap only to 0, 10, 20, and any value ...
1
vote
1answer
105 views
how to fire menu item click event in ATL OR WTL?
Currently i am using the ON_WM_SELECT messgae
but it will fire on mouse hover over the menu.
1
vote
1answer
339 views
no WM_SIZE message when minimize or restore
According to MSDN, WM_SIZE should be sent to window when window is minimized or restored.
But my application window, which is WTL CDialogImpl never get WM_SIZE when minimize or restore.
I use spy++ ...
1
vote
0answers
389 views
Win32 / WTL- My Checkbox imagelist state reverts to unchecked state
I'm creating a custom window in WTL to hold video controls for a DirectShow app.
I've created a set of check boxes that I wish to behave in the "push like" manner (BS_PUSHLIKE). They appear ...
1
vote
3answers
290 views
Is is possible to make a shaped, alpha-blended dialog?
I'm making a non-rectangular dialog, modelled over an image from Photoshop (the image is the background of the dialog, and the user will see trough the transparent part of the image). I'ts like a ...
1
vote
2answers
740 views
Handling wm_mousewheel message in WTL
I am trying to handle wm_mousewheel for my application.
Code:
BEGIN_MSG_MAP(DxWindow)
MESSAGE_HANDLER(WM_MOUSEWHEEL, KeyHandler)
END_MSG_MAP()
.
.
.
LRESULT DxWindow::KeyHandler( UINT uMsg, ...
1
vote
2answers
681 views
WTL Child window event handling
I am developing window application in that I am having 2 child windows on left and right side.
I want to handle input events for both windows separately.
How to achieve it?
My code:
class ...
1
vote
1answer
184 views
WTL CSplitterWindow cannot create more than 3 instances?
I'm using WTL to create a window containing many splitted panes. The following will be the result.
---------------------------
| | | |
| | | |
| | ...
1
vote
1answer
182 views
Calculating a gradient fill's start and end colours given a base colour
I have a WTL C++ application and I want the user to be able to select different colours for some of the UI elements and apply a gradient fill using the GradientFill API call. However, instead of ...
1
vote
2answers
318 views
ComboBoxEx32 (CComboBoxEx) keyboard behaviour
I have a WTL application that uses an extended combobox control (the Win32 class ComboBoxEx32) with the CBS_DROPDOWNLIST style. It works well (I can have images against each item in the box) but the ...
1
vote
2answers
381 views
default WM_DESTROY not properly cleaning up child windows
I have a WTL 8.0 SDI application for Windows Mobile 5. In this contrived example below, I create a view, destroy it, then re-create it. But, when it's re-created assertions in the WM_INITDIALOG ...
1
vote
6answers
600 views
Visual Studio 2008 c++ conditional template inheritance bug?
I'm in the process of porting a C++/WTL project from Visual Studio 2005 to VS 2008. One of the project configurations is a unit-testing build, which defines the preprocessor symbol UNIT_TEST.
In ...
1
vote
3answers
945 views
WTL CListViewCtrl with status text
I have a Windows Template Library CListViewCtrl in report mode (so there is a header with 2 columns) with owner data set. This control displays search results. If no results are returned I want to ...
1
vote
2answers
409 views
How to send a link to an application, like Spotify does
When we save a level in our editor, we create a log file of any errors it contains. These consist basically of an error message and a path that allows the user to find the erronous item in a tree ...
1
vote
3answers
2k views
How do I use WTL in a DLL?
I'm trying to use WTL within an in-process COM server DLL (an IE BHO), but am struggling with _Module.
My DLL needs CMyModule derived from CAtlDllModuleT<>:
class CMyModule : public ...
1
vote
2answers
641 views
Why a child window may not receive mouse events?
I have a custom WTL control which is a panel with a list and a custom scroll bar.
class Panel
: public ATL::CWindowImpl<Panel>, public WTL::CDoubleBufferImpl<Panel> {
public:
...
1
vote
2answers
1k views
Does ATL/WTL still require the use of a global _Module variable?
I'm just starting up a new ATL/WTL project and I was wondering if the global _Module variable is still required?
Back a few years when I started working with WTL it was required (at least for ATL ...
1
vote
2answers
308 views
Framework to bind object properties to WTL controls
I would like to have something like this:
class Foo {
private:
int bar;
public:
void setBar(int bar);
int getBar() const;
}
class MyDialog : public CDialogImpl<MyDialog> {
...
1
vote
4answers
568 views
Simplest way to change listview and treeview colours
I'm trying to find a simple way to change the colour of the text and background in listview and treeview controls in WTL or plain Win32 code. I really don't want to have to implement full owner ...
0
votes
1answer
26 views
Get Click event for CTreeViewCtrl
I mean click on element of treeview - > it show sth in listview.
I create controls like this(where tree and list - > CTreeViewCtrl and CListViewCtrl)
...
0
votes
2answers
64 views
Can't get resource bitmap sizes using winapi
I have an b/w bmp file. It's 8 BPP picture, size is 2048 * 2048. I create a new WTL project, go to "Resources" -> Import Bitmap -> select my bmp file -> give it MYBITMAPID id
Here is the code:
...
0
votes
0answers
54 views
Flash ActiveX and Monikers
I have written a program which opens flash files on the basis of ActiveX.
Here how the class looks:
#import "progid:ShockwaveFlash.ShockwaveFlash" no_namespace, raw_interfaces_only, named_guids, ...