Click here to Skip to main content
15,925,399 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Making an application get the same permissions? Pin
Michael Dunn29-Aug-05 7:45
sitebuilderMichael Dunn29-Aug-05 7:45 
GeneralRe: Making an application get the same permissions? Pin
Dominik Reichl29-Aug-05 8:51
Dominik Reichl29-Aug-05 8:51 
GeneralRe: Making an application get the same permissions? Pin
Jörgen Sigvardsson29-Aug-05 11:00
Jörgen Sigvardsson29-Aug-05 11:00 
GeneralRe: Making an application get the same permissions? Pin
Michael Dunn29-Aug-05 11:01
sitebuilderMichael Dunn29-Aug-05 11:01 
QuestionModern style of controls. Pin
scanf29-Aug-05 5:43
scanf29-Aug-05 5:43 
AnswerRe: Modern style of controls. Pin
toxcct29-Aug-05 5:48
toxcct29-Aug-05 5:48 
GeneralRe: Modern style of controls. Pin
scanf29-Aug-05 6:32
scanf29-Aug-05 6:32 
GeneralRe: Modern style of controls. Pin
Mr. Accident29-Aug-05 8:51
Mr. Accident29-Aug-05 8:51 
Just create a file called MyApp.manifest, or something like that, and copy the following text into it:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <assemblyIdentity version="1.0.0.0" processorArchitecture="x86" name="App" type="win32" />
  <description>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>


I know that in Visual C++ 6, you just have to import it as a resource, and when it asks for the resource type, you enter "24", and then change the resource's ID to "1". I'm not sure if it will work similarly in the 2005 beta, but it should be something along those lines.


[Insert witty and relevant signature here]
QuestionRe: Modern style of controls. Pin
Bob Stanneveld29-Aug-05 8:06
Bob Stanneveld29-Aug-05 8:06 
AnswerRe: Modern style of controls. Pin
scanf29-Aug-05 8:46
scanf29-Aug-05 8:46 
QuestionRe: Modern style of controls. Pin
Bob Stanneveld30-Aug-05 0:11
Bob Stanneveld30-Aug-05 0:11 
AnswerRe: Modern style of controls. Pin
scanf31-Aug-05 19:37
scanf31-Aug-05 19:37 
GeneralRe: Modern style of controls. Pin
Bob Stanneveld1-Sep-05 0:10
Bob Stanneveld1-Sep-05 0:10 
GeneralRe: Modern style of controls. Pin
scanf1-Sep-05 8:05
scanf1-Sep-05 8:05 
GeneralRe: Modern style of controls. Pin
Bob Stanneveld1-Sep-05 9:13
Bob Stanneveld1-Sep-05 9:13 
Questionchild style Pin
Ali Tavakol29-Aug-05 5:23
Ali Tavakol29-Aug-05 5:23 
Answer[Msg Deleted] Pin
toxcct29-Aug-05 5:28
toxcct29-Aug-05 5:28 
Answer[Message Deleted] Pin
toxcct29-Aug-05 5:28
toxcct29-Aug-05 5:28 
AnswerRe: child style Pin
Michael Dunn29-Aug-05 7:49
sitebuilderMichael Dunn29-Aug-05 7:49 
Answer[Message Deleted] Pin
Michael Dunn29-Aug-05 7:49
sitebuilderMichael Dunn29-Aug-05 7:49 
GeneralRe: [Msg Deleted] Pin
Jörgen Sigvardsson29-Aug-05 9:23
Jörgen Sigvardsson29-Aug-05 9:23 
GeneralRe: [Msg Deleted] Pin
Michael Dunn29-Aug-05 10:57
sitebuilderMichael Dunn29-Aug-05 10:57 
QuestionDrawing Server item in Container Pin
Member 214363829-Aug-05 4:28
Member 214363829-Aug-05 4:28 
QuestionCTreeCtrl is eating my WM_LBUTTONUP's :-( Pin
Taka Muraoka29-Aug-05 4:19
Taka Muraoka29-Aug-05 4:19 
AnswerRe: CTreeCtrl is eating my WM_LBUTTONUP's :-( Pin
Jack Puppy29-Aug-05 8:40
Jack Puppy29-Aug-05 8:40 

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.