Click here to Skip to main content
15,889,335 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: When should printf round a floating number up for display? Pin
Richard MacCutchan28-Dec-12 7:18
mveRichard MacCutchan28-Dec-12 7:18 
GeneralRe: When should printf round a floating number up for display? Pin
Member 419459328-Dec-12 7:20
Member 419459328-Dec-12 7:20 
GeneralRe: When should printf round a floating number up for display? Pin
Member 419459328-Dec-12 8:20
Member 419459328-Dec-12 8:20 
GeneralRe: When should printf round a floating number up for display? Pin
Member 419459328-Dec-12 8:58
Member 419459328-Dec-12 8:58 
AnswerRe: When should printf round a floating number up for display? Pin
jschell28-Dec-12 9:45
jschell28-Dec-12 9:45 
GeneralRe: When should printf round a floating number up for display? Pin
Member 419459328-Dec-12 12:51
Member 419459328-Dec-12 12:51 
Questiongraphics.h multi-threading problem Pin
yudhistira dewanata28-Dec-12 0:22
yudhistira dewanata28-Dec-12 0:22 
AnswerRe: graphics.h multi-threading problem Pin
Richard MacCutchan28-Dec-12 5:49
mveRichard MacCutchan28-Dec-12 5:49 
GeneralRe: graphics.h multi-threading problem Pin
yudhistira dewanata28-Dec-12 16:23
yudhistira dewanata28-Dec-12 16:23 
GeneralRe: graphics.h multi-threading problem Pin
Richard MacCutchan28-Dec-12 23:07
mveRichard MacCutchan28-Dec-12 23:07 
GeneralRe: graphics.h multi-threading problem Pin
yudhistira dewanata30-Dec-12 5:01
yudhistira dewanata30-Dec-12 5:01 
AnswerRe: graphics.h multi-threading problem Pin
Randor 29-Dec-12 8:25
professional Randor 29-Dec-12 8:25 
GeneralRe: graphics.h multi-threading problem Pin
Richard MacCutchan29-Dec-12 21:28
mveRichard MacCutchan29-Dec-12 21:28 
GeneralRe: graphics.h multi-threading problem Pin
yudhistira dewanata30-Dec-12 5:30
yudhistira dewanata30-Dec-12 5:30 
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 

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.