Click here to Skip to main content
15,880,651 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: graphics.h multi-threading problem Pin
Randor 31-Dec-12 11:14
professional Randor 31-Dec-12 11:14 
GeneralRe: graphics.h multi-threading problem Pin
yudhistira dewanata31-Dec-12 16:48
yudhistira dewanata31-Dec-12 16:48 
QuestionHow to find the similarity between users in Twitter ? Pin
ldaneil27-Dec-12 7:21
ldaneil27-Dec-12 7:21 
AnswerRe: How to find the similarity between users in Twitter ? Pin
André Kraak27-Dec-12 8:05
André Kraak27-Dec-12 8:05 
QuestionScrollBar is not Displaying Automatically Pin
002comp26-Dec-12 23:01
002comp26-Dec-12 23:01 
AnswerRe: ScrollBar is not Displaying Automatically Pin
April Fans27-Dec-12 14:22
April Fans27-Dec-12 14:22 
GeneralRe: ScrollBar is not Displaying Automatically Pin
Richard MacCutchan27-Dec-12 21:38
mveRichard MacCutchan27-Dec-12 21:38 
Question[SOLVED] Enhanced tool tips for ribbon markup file? Pin
Brandon-X1200026-Dec-12 6:18
Brandon-X1200026-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? Pin
Richard MacCutchan26-Dec-12 23:34
mveRichard MacCutchan26-Dec-12 23:34 
GeneralRe: Enhanced tool tips for ribbon markup file? Pin
Brandon-X1200027-Dec-12 10:12
Brandon-X1200027-Dec-12 10:12 
GeneralRe: Enhanced tool tips for ribbon markup file? Pin
Richard MacCutchan27-Dec-12 21:33
mveRichard MacCutchan27-Dec-12 21:33 
QuestionCasting structures - another basic question Pin
Vaclav_24-Dec-12 4:38
Vaclav_24-Dec-12 4:38 
AnswerRe: Casting structures - another basic question Pin
Richard MacCutchan24-Dec-12 5:19
mveRichard MacCutchan24-Dec-12 5:19 
GeneralSOLVED Casting structures - another basic question Pin
Vaclav_24-Dec-12 8:04
Vaclav_24-Dec-12 8:04 
GeneralRe: SOLVED Casting structures - another basic question Pin
Erudite_Eric2-Jan-13 7:13
Erudite_Eric2-Jan-13 7:13 
QuestionHow to count pages in PDF file using VC++ Pin
shanmugarajaa23-Dec-12 18:00
shanmugarajaa23-Dec-12 18:00 
AnswerRe: How to count pages in PDF file using VC++ Pin
Richard MacCutchan23-Dec-12 22:04
mveRichard MacCutchan23-Dec-12 22:04 
AnswerRe: How to count pages in PDF file using VC++ Pin
Jijo.Raj26-Dec-12 23:29
Jijo.Raj26-Dec-12 23:29 
QuestionHow to implement C++ raw string literals in VIsual C++ 2010? Pin
Falconapollo22-Dec-12 18:03
Falconapollo22-Dec-12 18:03 
Questionproblems returning/printing poiner Pin
doughyi8u20-Dec-12 14:16
doughyi8u20-Dec-12 14:16 
AnswerRe: problems returning/printing poiner Pin
Jochen Arndt20-Dec-12 21:15
professionalJochen Arndt20-Dec-12 21:15 
AnswerRe: problems returning/printing poiner Pin
Richard MacCutchan20-Dec-12 22:47
mveRichard MacCutchan20-Dec-12 22:47 
GeneralRe: problems returning/printing poiner Pin
Jochen Arndt20-Dec-12 23:07
professionalJochen Arndt20-Dec-12 23:07 
GeneralRe: problems returning/printing poiner Pin
Richard MacCutchan21-Dec-12 0:19
mveRichard MacCutchan21-Dec-12 0:19 
QuestionC++ ownerdrawfixed combobox "header" Pin
NoviceEx19-Dec-12 2:49
NoviceEx19-Dec-12 2: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.