Click here to Skip to main content
15,904,339 members
Home / Discussions / Windows Forms
   

Windows Forms

 
QuestionHow maintain advertisement on kiosk machine [modified] Pin
Prashant kr Yadav (MEC)7-Jan-08 3:36
Prashant kr Yadav (MEC)7-Jan-08 3:36 
AnswerRe: How maintain advertisement on kiosk machine Pin
Christian Graus8-Jan-08 9:18
protectorChristian Graus8-Jan-08 9:18 
GeneralRe: How maintain advertisement on kiosk machine Pin
Prashant kr Yadav (MEC)9-Jan-08 3:13
Prashant kr Yadav (MEC)9-Jan-08 3:13 
GeneralRe: How maintain advertisement on kiosk machine Pin
Pete O'Hanlon10-Jan-08 10:02
mvePete O'Hanlon10-Jan-08 10:02 
Generalusing shellexecuteex to register a dll Pin
iancarter7-Jan-08 0:26
iancarter7-Jan-08 0:26 
QuestionFinding the menu item the mouse is over for help request Pin
earlgraham4-Jan-08 13:03
earlgraham4-Jan-08 13:03 
GeneralRe: Finding the menu item the mouse is over for help request Pin
Kschuler10-Jan-08 9:59
Kschuler10-Jan-08 9:59 
GeneralRe: Finding the menu item the mouse is over for help request Pin
earlgraham10-Jan-08 10:05
earlgraham10-Jan-08 10:05 
Got worked out. Here is my final code.

for each ( ToolStripMenuItem ^tmpMS in this->menuMainForm->Items )
  {
    for each ( ToolStripItem ^tmpCntl in tmpMS->DropDownItems )
    {
      if (tmpCntl)
      {
        if ( tmpCntl->Selected )
          String ^tmpCntlName = tmpCntl->Name;
        OpenHelpForMenuItem(tmpCntlName);
      }
    }
  }


Programmer
Glenn Earl Graham
Austin, TX

General.net remoting Pin
divyesh14323-Jan-08 23:05
divyesh14323-Jan-08 23:05 
GeneralRe: .net remoting Pin
Dave Kreskowiak4-Jan-08 8:38
mveDave Kreskowiak4-Jan-08 8:38 
General2 control units(image buttons) in one datagrid Column Pin
jekak3-Jan-08 5:32
jekak3-Jan-08 5:32 
GeneralRe: 2 control units(image buttons) in one datagrid Column Pin
led mike3-Jan-08 5:54
led mike3-Jan-08 5:54 
GeneralRe: 2 control units(image buttons) in one datagrid Column Pin
jekak3-Jan-08 6:11
jekak3-Jan-08 6:11 
GeneralRe: 2 control units(image buttons) in one datagrid Column Pin
Pete O'Hanlon10-Jan-08 10:05
mvePete O'Hanlon10-Jan-08 10:05 
QuestionCustom Datagridview cell Pin
mp9920053-Jan-08 0:43
mp9920053-Jan-08 0:43 
GeneralRe: Custom Datagridview cell Pin
LongRange.Shooter1-Feb-08 9:57
LongRange.Shooter1-Feb-08 9:57 
QuestionAny way to get all TreeNodes in a TreeView have the '+' symbol? Pin
jeffb422-Jan-08 10:20
jeffb422-Jan-08 10:20 
AnswerRe: Any way to get all TreeNodes in a TreeView have the '+' symbol? Pin
led mike2-Jan-08 10:43
led mike2-Jan-08 10:43 
AnswerRe: Any way to get all TreeNodes in a TreeView have the '+' symbol? Pin
Dave Kreskowiak2-Jan-08 12:25
mveDave Kreskowiak2-Jan-08 12:25 
GeneralRe: Any way to get all TreeNodes in a TreeView have the '+' symbol? Pin
jeffb422-Jan-08 12:57
jeffb422-Jan-08 12:57 
GeneralRe: Any way to get all TreeNodes in a TreeView have the '+' symbol? Pin
Dave Kreskowiak3-Jan-08 5:41
mveDave Kreskowiak3-Jan-08 5:41 
Generalwindows service :) [modified] Pin
accessred2-Jan-08 5:11
accessred2-Jan-08 5:11 
GeneralRe: windows service :) Pin
Dave Kreskowiak2-Jan-08 7:57
mveDave Kreskowiak2-Jan-08 7:57 
Questionhow to find out number of instantiations of a form Pin
Sumanth Pereji1-Jan-08 18:37
Sumanth Pereji1-Jan-08 18:37 
AnswerRe: how to find out number of instantiations of a form Pin
sindhutiwari1-Jan-08 19:55
sindhutiwari1-Jan-08 19:55 

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.