Click here to Skip to main content
16,008,183 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: visual c++ Pin
Steve S1-Mar-04 22:35
Steve S1-Mar-04 22:35 
GeneralCasino Game Pin
maravingian1-Mar-04 6:44
maravingian1-Mar-04 6:44 
GeneralRe: Casino Game Pin
Wes Aday1-Mar-04 7:27
professionalWes Aday1-Mar-04 7:27 
GeneralRe: Casino Game Pin
John M. Drescher1-Mar-04 7:41
John M. Drescher1-Mar-04 7:41 
Questionwhere to get free PDF sdk? Pin
Xiaodi_Liu1-Mar-04 6:44
Xiaodi_Liu1-Mar-04 6:44 
AnswerRe: where to get free PDF sdk? Pin
John M. Drescher1-Mar-04 7:45
John M. Drescher1-Mar-04 7:45 
QuestionHow to display xp style button and check box. Pin
bin89221-Mar-04 5:55
bin89221-Mar-04 5:55 
AnswerRe: How to display xp style button and check box. Pin
John R. Shaw1-Mar-04 16:43
John R. Shaw1-Mar-04 16:43 
There are some articles on this subject at codeproject, if the following does not provide enough information, try searching for XP manifest.

Basicaly you need a manifest file or resource, you can find a manifest file at microsoft. A manifest file contains XML code that informs XP to use XP syle buttons, ect., in your app. You would install the file with a name like MyApp.exe.manifest, in the same directory that you store you application (name MyApp.exe). Or you can add the manifest as a resource to you application its' self. To do that you first create a manifest file then add a new resourse type 24 in the resource pane and then import the manifest file as a resourse and give it an ID of 1.

This is what is contained in the manifest file, you can copy the following and paste it into your new manifest file:


<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestversion="1.0">
<assemblyidentity
="" version="1.0.0.0" processorarchitecture="X86" name="CompanyName.ProductName.YourApp" type="win32">
<description>Your application description here.
<dependency>
<dependentassembly>
<assemblyidentity
="" type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorarchitecture="X86" publickeytoken="6595b64144ccf1df" language="*">






INTP
GeneralThank you very much. Pin
bin89222-Mar-04 5:47
bin89222-Mar-04 5:47 
GeneralVery simple Thread class. Pin
Quaoar1-Mar-04 5:44
Quaoar1-Mar-04 5:44 
GeneralRe: Very simple Thread class. Pin
John M. Drescher1-Mar-04 9:00
John M. Drescher1-Mar-04 9:00 
GeneralRe: Very simple Thread class. Pin
Joe Woodbury1-Mar-04 18:31
professionalJoe Woodbury1-Mar-04 18:31 
GeneralRe: Very simple Thread class. Pin
Quaoar2-Mar-04 6:23
Quaoar2-Mar-04 6:23 
QuestionHow to Create a Button with Tooltip in &quot;win32 application project&quot;? Pin
akira321-Mar-04 5:18
akira321-Mar-04 5:18 
AnswerRe: How to Create a Button with Tooltip in &quot;win32 application project&quot;? Pin
rrrado1-Mar-04 5:26
rrrado1-Mar-04 5:26 
QuestionHow to remember app window's size Pin
rrrado1-Mar-04 5:16
rrrado1-Mar-04 5:16 
AnswerRe: How to remember app window's size Pin
David Crow1-Mar-04 5:45
David Crow1-Mar-04 5:45 
GeneralRe: How to remember app window's size Pin
Diddy2-Mar-04 11:27
Diddy2-Mar-04 11:27 
QuestionHow to show Window Maximized? - initially Pin
vgrigor1-Mar-04 4:04
vgrigor1-Mar-04 4:04 
AnswerRe: How to show Window Maximized? - initially Pin
Wes Aday1-Mar-04 4:14
professionalWes Aday1-Mar-04 4:14 
GeneralRe: How to show Window Maximized? - initially Pin
vgrigor1-Mar-04 4:26
vgrigor1-Mar-04 4:26 
GeneralRe: How to show Window Maximized? - initially Pin
Wes Aday1-Mar-04 4:38
professionalWes Aday1-Mar-04 4:38 
Questionhow to customize a merged menu when in-place editing Pin
Member 4855451-Mar-04 4:02
Member 4855451-Mar-04 4:02 
GeneralRe: Pointer To Dialog Pin
Caoimh1-Mar-04 3:32
Caoimh1-Mar-04 3:32 
GeneralRe: Pointer To Dialog Pin
David Crow1-Mar-04 3:49
David Crow1-Mar-04 3:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.