Originally posted by: Alexander
Thanks a lot. Well done.
ReplyOriginally posted by: William Swartzendruber
I got some code from somewhere that would draw any control as transparent so that it would appear correctly on tabs with the correct background color. The only problem is that when I set an Option Button or Slider Bar as transparent, they appear black inside and won't redraw correctly.
ReplyOriginally posted by: Ali
good lesson
ReplyOriginally posted by: Jose Ramos
Has anyone seen this problem? If anybody has a solution,
Thanks!
I am having a problem with the status bars when the panes
have tooltips to display. Whenever I move the cursor over
the status bar it displays the correct tooltip, but it
also displays what appears to be another tooltip window
(just behind the first one) containing a huge string of
grabage...
please email me or post her...
Originally posted by: Bernd
Unfortunately, your solution won't work with ownerdrawn controls. Is there any way to fix this?
Originally posted by: Nikolai
I have DLL ATL Project in VS7 and no .exe application.
Will it work for DLL?
Originally posted by: maya75
I use a dialog box to initialize display for an OpenGL app.
I found another way to make it work :
1 - link to ComCtl32.lib in Visual Studio (Alt-F7)
and CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "myApp.exe.manifest"
Ref : this article and http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwxp/html/xptheming.asp
First thanks for your work.
I didn't use class like BOOL MoneyApp::InitInstance()
and when i used Enable3dControls(); or Enable3dControlsStatic(); i had this error :
error C2065: 'Enable3dControls' : undeclared identifier
2 - add : #include "commctrl.h" in your project
3 - add : InitCommonControls(); in your WinMain() function
4 - make your myApp.exe.manifest in the same dir of myApp.exe (you can write anything as name and desc)
5 - in resource.h add :
#define CREATEPROCESS_MANIFEST_RESOURCE_ID 1
#define RT_MANIFEST 24
6 - in resource.rc add :
"CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST ""myAPP.exe.manifest""\r\n"
in the #ifdef APSTUDIO_INVOKED section, after :
3 TEXTINCLUDE DISCARDABLE
BEGIN
in the #ifndef APSTUDIO_INVOKED section.
For me it works.
Originally posted by: Rajit Kumar
worm regards..
I really impressed after seeing your code and you did what i really looking for.
great efforts....
Rajit..
Originally posted by: Richard 'vajuras' Osborne
I knew how to get this to work if I included the file with my exe internally. However, I couldn't get it to work by including it as a resource when I followed Microsoft's tutorials. Anyway thanks a bunch!
ReplyOriginally posted by: Muthu
Thanks a lot.
Great idea with very less coding...
Reply