The common-controls tag has no wiki summary.
6
votes
1answer
111 views
Changing font in CHOOSECOLOR dialog
I'm using the Windows common controls CHOOSECOLOR dialog, but on Win 7 it sticks out like a sore thumb as it still uses the 'old' Tahoma font.
Is there a fairly easy way of getting it to use Segoe ...
3
votes
1answer
358 views
Does LVS_EX_DOUBLEBUFFER correctly not double buffer when running on a remote session?
One is supposed to use double buffering when running locally, but to not use double buffering when the window is on a remote session, if one wants to have the best performance of each mode.
The ...
2
votes
2answers
38 views
Disabling visual styles in manifest while retaining Common Controls functionality
I'm using pure WINAPI, and need to send the TB_GETMETRICS message. However, that message only works if you add a manifest file to your application with a reference to Common Controls version 6.0. I ...
2
votes
0answers
91 views
How do I get a reference to a Win7 library from a common controls dialog hook?
I am implementing an OFNHookProc to instrument a common controls GetOpenFileName() dialog on Windows 7. My instrumentation is written in C++. Things work fine until the user selects a Library (like ...
2
votes
1answer
727 views
How do I get full unicode support including chinese characters in VCL controls or Windows Common Controls on XP like it is in Win7
I have an application that I have been testing for internationalization support.
There is, for example, a standard TEdit control, with the font.Name = 'Arial'.
On Windows 7, it seems to ...
2
votes
3answers
587 views
In Windows 7 X64, statusBar does not show text for the panels starting from the 11th correctly
Summarization:
(1) This is very likely to be a bug. However, I cannot say for sure whether it is more related to 64bit OS, or VCL, or MFC wrapper. Please check the answers and comments below from ...
2
votes
2answers
353 views
Does LVS_EX_FULLROWSELECT have any compatibility issues with other styles?
I am trying to set the LVS_EX_FULLROWSELECT style on my grid list control as I want full row selection. However apparently it doesn't have any effect. Since I am using a number of other styles as ...
2
votes
1answer
193 views
Win32: How to prevent DateTimePicker from accepting 2-digit years?
Microsoft's DateTimePicker common control shows ShortDate's according to the configured Locale settings. The customer's computer is configured with a 2-digit year ShortDateFormat (d/M/yy), so the ...
1
vote
1answer
153 views
XP Common Controls Manifest: processorArchitecture='x86' vs. processorArchitecture='*'
What's the advantage of saying
#pragma comment(linker, "/manifestdependency:\"type='win32'" \
"name='Microsoft.Windows.Common-Controls'" \
"version='6.0.0.0'" ...
1
vote
1answer
1k views
How do I prevent flickering on CListCtrl?
I'm using a CListCtrl/CListView report view (LVS_REPORT) in virtual mode (LVS_OWNERDATA) with LVS_EX_DOUBLEBUFFER enabled and I encounter ugly flickering. Double buffer have a real effect but it ...
0
votes
0answers
26 views
how do i find html code in an application on the repository?
I am trying to find the html source code for my application on the repository. It uses the common controls framework over struts2. I am not sure about the common control methodology for the html's.
I ...
0
votes
1answer
191 views
Problem with subclassing richedit using GWL_WNDPROC
I do this exact thing for both edit and richedit but for the latter there is an access violation, why? The same thing happens when done for tabctrl too. What am I doing wrong? How can I get it to ...
0
votes
3answers
282 views
Single-select Win32 ListView (Common Controls)
I'm using the ListView control from Common Controls 6.0 in C++ and I need the ListView to be single-select only.
All of the higher level controls have this feature (e.g. .Net and Qt), but I imagine ...
0
votes
1answer
670 views
Making a vb.net application blend in with the Windows theme
Previously I used to piddle around with VB6 to develop a couple of personal projects. Following my upgrade to Windows 7, I've decided to piddle about with vb.net Express Edition 2010.
If I wanted my ...
0
votes
0answers
84 views
Wizard header disappearing in Vista when I added Common Controls 6 to manifest
Been googling around for a while now and found other references to this problem but no solution.
I have an MFC program I build with Visual Studio 6. It includes a CPropertySheetEx-derived class that ...
0
votes
1answer
166 views
Placing a image inside an CEdit control in Win32
I'm trying to achieve an effect where there's a visible logo inside an edit control and the logo becomes hidden when the user places the focus on the edit control.
What's the best way to approach ...
0
votes
1answer
81 views
Common Controls 6.0 in Windows 2000?
I'm wanting to use Grouping in CListCtrls, which seems to have been introduced in Common Controls 6. CC6 only came out with XP, so we have a problem with Windows 2000 and earlier. Deploying a new ...