Tagged Questions
The comctl32 tag has no wiki summary.
4
votes
1answer
233 views
Delphi 5 causes EAccessViolation when manifest is added as a resource
This is one of most interesting problems I have found recently.
We have a legacy Delphi 5 program (Rave Reports 4 references are preventing from upgrading to D2007).
When program is compiled with our ...
2
votes
1answer
175 views
Is the call order guaranteed for multiple SetWindowSubclass against the same window?
I am using SetWindowSubclass to set up two different subclass procedures against a control (in this case, a multiline edit field).
One subclass "edit" functionality specific to edit controls and the ...
2
votes
2answers
343 views
Obtain the true name of the currently select file in the common file dialog?
One can get the text of the selected item in the list-view of a common dialog. But one can NOT get its PIDL, and if the user has chosen to hide known extensions (the default), then one cannot really ...
2
votes
2answers
565 views
C#: comctl32.dll version 6 in debugger
I'm using the WindowsAPICodePack for TaskDialog. When I try to show the dialog it says that it needs to load version 6 of comctl32.dll. So I added version 6 to the app.manifest and tried running it. ...
1
vote
1answer
128 views
CreateDialog Failed, but why GetLastError returns 0?
I am writing an editor for my project by using scintilla editor component. The editor is for an internal scripting language, having all the basic functionalities like cut,copy, paste etc. As one of ...
1
vote
1answer
35 views
Enable 'ReaderMode' in .Net control, PInvoke DoReaderMode API
I want to enable the 'ReaderMode' for paning/scrolling my control in .Net. Closest thing I found was this Win API function http://msdn.microsoft.com/en-us/library/bb775599(VS.85).aspx. However, I'm ...
1
vote
1answer
79 views
What is the P/Invoke signature to send the MCM_GETSELRANGE message to a MonthCalendar?
I'm trying to send the MCM_GETSELRANGE windows message to a standard MonthCalendar. Based on the documentation I have tried the following with no luck (the dates come back as nothing [as in they are ...
1
vote
0answers
75 views
Skin Dialogs when using XP Themes?
I have been skinning dialogs by using the WM_CTLCOLORSTATIC, WM_CTLCOLORBTN messages as such:-
case WM_CTLCOLORSTATIC:
case WM_CTLCOLORBTN:
hdc = (HDC)wParam;
hwndCtl = (HWND)lParam;
...
1
vote
0answers
148 views
How do I correctly toggle the visibility of my toolbar button?
I try to modify code for IE toolbar button in visual c++.
I manage to hide my toolbar button using, TB_HIDEBUTTON at run time.
How to unhide it back in run time?
Here is the code that Im currently ...
1
vote
1answer
199 views
ListView multiple selection behavior
The ListView in Comtl32.dll v6.0 does multiple selection (when using Shift key) as follows (x means selected)
00xxxx
xxxxxx
xxxx00
Earlier versions of ListView do it as follows :
00xx00
00xx00
...
0
votes
0answers
15 views
How do I fire the NodeClick event on a comctl Treeview object in a web page?
I can get the Treeview itself, enumerate through its nodes, highlight, set bold, change node text and so on. What I would like to do, is emulate a double click on one of the treenodes. I understand ...
0
votes
1answer
95 views
GetMdouleHandle and GetProcAddress when COMCTL32.DLL is loaded twice
I am running inside a process where COMCTL32.DLL is loaded twice, once with the version 5.82.7601.17514 and once with the version 6.10.7601.17514. The legacy version is loaded by some legacy DLL the ...
0
votes
1answer
76 views
FlatSB_GetScrollInfo could not be located in … COMCTL32.dll
I just upgraded a product from C++Builder 2007 to RAD Studio XE, and at the same time changed some third party component.
Now, when I run my product on Vista, I get the following error:
...
0
votes
2answers
88 views
Error PInvoking Function
I have the following code as part of my control. SetReaderMode function creates the structure and calls the function explained here, http://msdn.microsoft.com/en-us/library/bb775599(VS.85).aspx
When ...
0
votes
1answer
275 views
FindPrivateKey under Windows 7 64 bit doesn't work
I've downloaded .net sample FindPrivateKey, compiled for framework 4.0, tried for different platforms (32bit, 64bit, Any CPU) but it didn't work. Always the same error: the ordinal 345 could not be ...
0
votes
1answer
296 views
Application does not load with XP SP3 and a manifest related to comctl32
My application ( C++, compiled with Mingw, using mainly wxWidgets, Boost and SFML ), which runs smoothly on Windows 7 or Vista, does not work properly on Windows XP SP3. I have a .manifest file which ...
0
votes
1answer
124 views
ListView multiple selection behavior?
The ListView in Comtl32.dll v6.0 does multiple selection (when using Shift key) as follows (x means selected)
00xxxx
xxxxxx
xxxx00
Earlier versions of ListView do it as follows :
00xx00
00xx00
...
0
votes
2answers
517 views
How to enable visual styles without a manifest
According to the docs:
"If you want your application to use ComCtl32.dll version 6, you must add an application manifest or compiler directive to specify that version 6 should be used if it is ...
0
votes
1answer
80 views
Dialog of my Word add-in not using visual styles
I have written a Word add-in in C++ using plain Win32 API. It opens some dialogs but these are always shown without commctl6 visual styles on Vista+. The manifest is in place as RT_MANIFEST and ...
0
votes
3answers
524 views
Why does the TVM_GETITEM message fail on comctl32.ocx or mscomctl.ocx tree views?
I wrote a function which can yield the text of a tree view item, even if the tree view is in a remote process. The function allocates two chunks of memory in the remote process, populates a TVITEM ...
0
votes
1answer
1k views
Button background transparency using Win32 and Visual Styles
Edit: If anyone's tried this in win32 before, am I going in the right direction by using DrawThemeBackground()?
I'v recently enabled Visual Styles using a manifest for version 6 of ComCtl32.dll. ...
0
votes
1answer
255 views
Detecting COMCTL32 version in .NET
How do I determine which version of comctl32.dll is being used by a C# .NET application? The answers I've seen to this question usually involve getting version info from the physical file in ...