Click here to Skip to main content
       

C / C++ / MFC

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page  Show 
GeneralRe: graphics.h multi-threading problemmvpRichard MacCutchan28-Dec-12 23:07 
GeneralRe: graphics.h multi-threading problemmemberyudhistira dewanata30-Dec-12 5:01 
AnswerRe: graphics.h multi-threading problemmember Randor 29-Dec-12 8:25 
GeneralRe: graphics.h multi-threading problemmvpRichard MacCutchan29-Dec-12 21:28 
GeneralRe: graphics.h multi-threading problemmemberyudhistira dewanata30-Dec-12 5:30 
GeneralRe: graphics.h multi-threading problemmember Randor 31-Dec-12 11:14 
GeneralRe: graphics.h multi-threading problemmemberyudhistira dewanata31-Dec-12 16:48 
QuestionHow to find the similarity between users in Twitter ?memberldaneil27-Dec-12 7:21 
AnswerRe: How to find the similarity between users in Twitter ?memberAndré Kraak27-Dec-12 8:05 
QuestionScrollBar is not Displaying Automaticallymemberyogeshs26-Dec-12 23:01 
AnswerRe: ScrollBar is not Displaying AutomaticallymemberApril Fans27-Dec-12 14:22 
GeneralRe: ScrollBar is not Displaying AutomaticallymvpRichard MacCutchan27-Dec-12 21:38 
Question[SOLVED] Enhanced tool tips for ribbon markup file? [modified]memberBrandon T. H.26-Dec-12 6:18 
Hello everybody,
Does anybody know how to put commands in a ribbon markup file (for example a ribbon.xml)?
 
Here's the code:
<?xml version='1.0' encoding='utf-8'?>
<Application xmlns='http://schemas.microsoft.com/windows/2009/Ribbon'>
  <!-- Commands section -->
  <Application.Commands>
 
    <Command Name="cmdTab1"
             Comment="The main tab of the ribbon."
             Symbol="cmdTab1"
             Id="500" >
      <Command.LabelTitle>
        <String Id ="501">Home</String>
      </Command.LabelTitle>
    </Command>
 
    <Command Name="cmdButtonKillUapps"
  Comment="Kill all user mode applications on the computer."
  Symbol="cmdButtonKillUapps"
  Id="11111" >
      <Command.LabelTitle>
        <String Id ="1214">Kill U. Applications</String>
      </Command.LabelTitle>
      <Command.LargeImages>
        <Image Id="7097">res/kuAppsBlue.bmp</Image>
      </Command.LargeImages>
      <Command.SmallImages>
        <Image Id="9802">res/kuAppsBlue16x16.bmp</Image>
      </Command.SmallImages>
    </Command>
 
    <Command Name="cmdButtonKillKapps"
  Comment="Kill all kernel mode applications on the computer."
  Symbol="cmdButtonKillKapps"
  Id="2222" >
      <Command.LabelTitle>
        <String Id ="5498">Kill K. Applications</String>
      </Command.LabelTitle>
      <Command.LargeImages>
        <Image Id="2322">res/kuAppsBlue.bmp</Image>
      </Command.LargeImages>
      <Command.SmallImages>
        <Image Id="1047">res/kuAppsBlue16x16.bmp</Image>
      </Command.SmallImages>
    </Command>
    
    <Command Name="cmdButtonBlnkScrn"
      Comment="Lock up and out computer of people on client(s)."
      Symbol="cmdButtonBlnkScrn"
      Id="502" >
      <Command.LabelTitle>
        <String Id ="503">Blank Screen</String>
      </Command.LabelTitle>
      <Command.LargeImages>
        <Image Id="504">res/bscreenBlue_ico.bmp</Image>
      </Command.LargeImages>
      <Command.SmallImages>
        <Image Id="505">res/bscreenBlue_ico16x16.bmp</Image>
      </Command.SmallImages>
    </Command>
 
    <Command Name="cmdButtonDisaIn"
      Comment="Turn off mice(s) and keyboard(s) as if the devices were unplugged from the computer."
      Symbol="cmdButtonDisaIn"
      Id="599" >
      <Command.LabelTitle>
        <String Id ="510">Disable Input</String>
      </Command.LabelTitle>
      <Command.LargeImages>
        <Image Id="519">res/key_blanklock.bmp</Image>
      </Command.LargeImages>
      <Command.SmallImages>
        <Image Id="554">res/key_blanklock16x16.bmp</Image>
      </Command.SmallImages>
    </Command>
  </Application.Commands>
  
  <Application.Views>
    <Ribbon>
      <Ribbon.Tabs>
        <Tab CommandName="cmdTab1">
          <Group CommandName="cmdGroup1" SizeDefinition="ThreeButtons">
            <SplitButton CommandName="cmdButtonKillUapps">
              <Button CommandName="cmdButtonKillKapps" />
            </SplitButton>
            <ToggleButton CommandName="cmdButtonBlnkScrn" />
            <ToggleButton CommandName="cmdButtonDisaIn" />
          </Group>
        </Tab>
      </Ribbon.Tabs>
    </Ribbon>
  </Application.Views>
</Application>
 
Like when I hover my cursor with my mice over a command it should show a box showing a title and a concise description of what it basically does.
 
I am using the Windows 7 S.D.K. with Visual Studio 2010 and comping this through an external executable called uicc.exe.
Simple Thanks and Regards,
Brandon T. H.
 
Programming in C and C++ now, now developing applications, services and drivers (and maybe some kernel modules...psst kernel-mode drivers...psst).
 
Many of life's failures are people who did not realize how close they were to success when they gave up. - Thomas Edison


modified 27-Dec-12 20:48pm.

AnswerRe: Enhanced tool tips for ribbon markup file?mvpRichard MacCutchan26-Dec-12 23:34 
GeneralRe: Enhanced tool tips for ribbon markup file?memberBrandon T. H.27-Dec-12 10:12 
GeneralRe: Enhanced tool tips for ribbon markup file?mvpRichard MacCutchan27-Dec-12 21:33 
QuestionCasting structures - another basic questionmemberVaclav_Sal24-Dec-12 4:38 
AnswerRe: Casting structures - another basic questionmvpRichard MacCutchan24-Dec-12 5:19 
GeneralSOLVED Casting structures - another basic questionmemberVaclav_Sal24-Dec-12 8:04 
GeneralRe: SOLVED Casting structures - another basic questionmemberErudite_Eric2-Jan-13 7:13 
QuestionHow to count pages in PDF file using VC++membershanmugarajaa23-Dec-12 18:00 
AnswerRe: How to count pages in PDF file using VC++mvpRichard MacCutchan23-Dec-12 22:04 
AnswerRe: How to count pages in PDF file using VC++memberJijo.Raj26-Dec-12 23:29 
QuestionHow to implement C++ raw string literals in VIsual C++ 2010?memberFalconapollo22-Dec-12 18:03 
Questionproblems returning/printing poinermemberdoughyi8u20-Dec-12 14:16 
AnswerRe: problems returning/printing poinermemberJochen Arndt20-Dec-12 21:15 
AnswerRe: problems returning/printing poinermvpRichard MacCutchan20-Dec-12 22:47 
GeneralRe: problems returning/printing poinermemberJochen Arndt20-Dec-12 23:07 
GeneralRe: problems returning/printing poinermvpRichard MacCutchan21-Dec-12 0:19 
QuestionC++ ownerdrawfixed combobox "header"memberNoviceEx19-Dec-12 2:49 
AnswerRe: C++ ownerdrawfixed combobox "header"memberjeron119-Dec-12 4:19 
QuestionHow to make a project resolution independent.?membermbatra3118-Dec-12 23:56 
AnswerRe: How to make a project resolution independent.?memberJochen Arndt19-Dec-12 0:29 
GeneralRe: How to make a project resolution independent.?membermbatra3119-Dec-12 0:39 
GeneralRe: How to make a project resolution independent.?memberJochen Arndt19-Dec-12 0:52 
GeneralRe: How to make a project resolution independent.?membermbatra3119-Dec-12 1:25 
GeneralRe: How to make a project resolution independent.?memberJochen Arndt19-Dec-12 1:33 
GeneralRe: How to make a project resolution independent.?membermbatra3119-Dec-12 1:44 
GeneralRe: How to make a project resolution independent.?memberJochen Arndt19-Dec-12 2:06 
AnswerRe: How to make a project resolution independent.?memberAlan Balkany19-Dec-12 4:25 
QuestionASM with stams library of C ++memberGurunathkudalkar18-Dec-12 21:15 
AnswerRe: ASM with stams library of C ++mvpCPallini18-Dec-12 22:19 
Questionerror C2228 "must have class/struct/union"memberalaaan7318-Dec-12 4:55 
AnswerRe: error C2228 "must have class/struct/union"memberChris Losinger18-Dec-12 5:19 
AnswerRe: error C2228 "must have class/struct/union"mvpRichard MacCutchan18-Dec-12 7:09 
AnswerRe: error C2228 "must have class/struct/union"memberStefan_Lang21-Dec-12 1:59 
QuestionCan we capture HD video using DirectShow C++/MFC .?membermbatra3117-Dec-12 23:30 
QuestionCWinApp::OnFileNew failed ?memberCodzer17-Dec-12 19:23 
GeneralRe: CWinApp::OnFileNew failed ?memberJochen Arndt17-Dec-12 21:33 
GeneralRe: CWinApp::OnFileNew failed ?memberCodzer18-Dec-12 2:48 

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


Advertise | Privacy | Mobile
Web02 | 2.6.130619.1 | Last Updated 20 Jun 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid