Click here to Skip to main content
15,912,069 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
AnswerRe: My Treeviewlist causes my main dialogue to crash... help Pin
monsieur_jj25-Jun-08 19:52
monsieur_jj25-Jun-08 19:52 
QuestionIn ATL, Progess Bar look Pin
sumit.durg23-Jun-08 20:47
sumit.durg23-Jun-08 20:47 
AnswerRe: In ATL, Progess Bar look Pin
sumit.durg23-Jun-08 22:47
sumit.durg23-Jun-08 22:47 
GeneralRe: In ATL, Progess Bar look Pin
Stuart Dootson23-Jun-08 23:14
professionalStuart Dootson23-Jun-08 23:14 
GeneralRe: In ATL, Progess Bar look Pin
sumit.durg24-Jun-08 2:18
sumit.durg24-Jun-08 2:18 
GeneralRe: In ATL, Progess Bar look Pin
Stuart Dootson24-Jun-08 3:30
professionalStuart Dootson24-Jun-08 3:30 
GeneralRe: In ATL, Progess Bar look Pin
sumit.durg25-Jun-08 0:49
sumit.durg25-Jun-08 0:49 
GeneralRe: In ATL, Progess Bar look Pin
Stuart Dootson25-Jun-08 2:08
professionalStuart Dootson25-Jun-08 2:08 
This page[^] describes the process pretty well. Summarised, you do the following:

1. Add a file called 'MyApp.manifest' to your project. Put the following text into it, replacing the bits in italics with text that's appropriate for your application.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> 
<assemblyIdentity 
    version="your app's version" 
    processorArchitecture="X86" 
    name="your app's name"
    type="win32" 
/> 
<description>A Description of your application</description> 
<dependency> 
    <dependentAssembly> 
        <assemblyIdentity 
            type="win32" 
            name="Microsoft.Windows.Common-Controls" 
            version="6.0.0.0" 
            processorArchitecture="X86" 
            publicKeyToken="6595b64144ccf1df" 
            language="*" 
        /> 
    </dependentAssembly> 
</dependency> 
</assembly>


2. Add the following line to your project's resource file (the one with the .RC extension).

1                       RT_MANIFEST             "MyApp.manifest"


3. Rebuild your application
QuestionReturn map&lt;cstring,&gt; from com atl???? Pin
Romiks19-Jun-08 4:04
Romiks19-Jun-08 4:04 
AnswerRe: Return map&lt;cstring,&gt; from com atl???? Pin
Stephen Hewitt19-Jun-08 16:30
Stephen Hewitt19-Jun-08 16:30 
AnswerRe: Return map&lt;cstring,&gt; from com atl???? Pin
Stuart Dootson19-Jun-08 21:26
professionalStuart Dootson19-Jun-08 21:26 
GeneralRe: Return map&lt;cstring,&gt; from com atl???? Pin
Romiks20-Jun-08 8:13
Romiks20-Jun-08 8:13 
GeneralRe: Return map&lt;cstring,&gt; from com atl???? Pin
tom groezer28-Aug-08 22:46
tom groezer28-Aug-08 22:46 
QuestionHow can i change font and style of Static text in ATL? Pin
sumit.durg19-Jun-08 2:46
sumit.durg19-Jun-08 2:46 
QuestionHow to I create a Check List Box? Pin
monsieur_jj17-Jun-08 17:48
monsieur_jj17-Jun-08 17:48 
AnswerRe: How to I create a Check List Box? Pin
Rahul Vaishnav17-Jun-08 19:40
Rahul Vaishnav17-Jun-08 19:40 
GeneralRe: How to I create a Check List Box? Pin
monsieur_jj17-Jun-08 20:54
monsieur_jj17-Jun-08 20:54 
GeneralRe: How to I create a Check List Box? [modified] Pin
monsieur_jj18-Jun-08 15:34
monsieur_jj18-Jun-08 15:34 
GeneralRe: How to I create a Check List Box? Pin
Steve Echols18-Jun-08 22:45
Steve Echols18-Jun-08 22:45 
GeneralRe: How to I create a Check List Box? Pin
monsieur_jj19-Jun-08 14:41
monsieur_jj19-Jun-08 14:41 
GeneralRe: How to I create a Check List Box? Pin
monsieur_jj19-Jun-08 15:51
monsieur_jj19-Jun-08 15:51 
QuestionOle Db Consumer Pin
Donwangugi`9-Jun-08 10:02
Donwangugi`9-Jun-08 10:02 
AnswerRe: Ole Db Consumer Pin
Gene OK12-Jun-08 3:51
Gene OK12-Jun-08 3:51 
Questionhow to implement CStdioFile::WriteLine() with native C++ and STL? Pin
steven_wong4-Jun-08 14:20
steven_wong4-Jun-08 14:20 
AnswerRe: how to implement CStdioFile::WriteLine() with native C++ and STL? Pin
Jörgen Sigvardsson4-Jun-08 20:53
Jörgen Sigvardsson4-Jun-08 20:53 

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.