Click here to Skip to main content
15,910,234 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralVisual c++ Net application Deployment Pin
mikobi14-Jan-08 19:32
mikobi14-Jan-08 19:32 
GeneralRe: Visual c++ Net application Deployment Pin
led mike15-Jan-08 4:40
led mike15-Jan-08 4:40 
GeneralTo Load Image Pin
mikobi14-Jan-08 4:22
mikobi14-Jan-08 4:22 
GeneralRe: To Load Image Pin
Paul Conrad25-Jan-08 16:01
professionalPaul Conrad25-Jan-08 16:01 
GeneralRe: To Load Image Pin
mikobi25-Jan-08 19:27
mikobi25-Jan-08 19:27 
GeneralSplitContainer Pin
mikobi14-Jan-08 0:05
mikobi14-Jan-08 0:05 
GeneralNavigation pane menu Pin
mikobi10-Jan-08 0:34
mikobi10-Jan-08 0:34 
GeneralFinding the menu item the mouse is over for help request [modified] Pin
earlgraham4-Jan-08 6:59
earlgraham4-Jan-08 6:59 
I want to have my compiled html help point to a topic specific to where the mouse is pointing but I can't seem to determine which control the mouse is hovering over.

private: System::Void FrmMain_HelpRequested(System::Object^  sender, System::Windows::Forms::HelpEventArgs^  hlpevent) 
{
  Point pt = this->PointToClient(hlpevent->MousePos);
  Control^ requestingControl = dynamic_cast<control^>(sender);
  Control ^ctrl = this->GetChildAtPoint(pt);
  Control ^ctrl2 = this->ActiveControl;  
  if( File::Exists(this->helpProvider->HelpNamespace ) == true)
  {
    Help::ShowHelp(this, this->helpProvider->HelpNamespace);
  }
}</control^>


ctrl is the form itself and crtl2 is the last active mdichild in my application.
requestingControl returns the form and not the item the mouse is over.

Hope someone can help Sigh | :sigh:

Programmer
Glenn Earl Graham
Austin, TX

modified on Friday, January 04, 2008 1:56:26 PM

GeneralRe: Finding the menu item the mouse is over for help request Pin
Luc Pattyn4-Jan-08 7:41
sitebuilderLuc Pattyn4-Jan-08 7:41 
GeneralRe: Finding the menu item the mouse is over for help request Pin
earlgraham4-Jan-08 8:00
earlgraham4-Jan-08 8:00 
GeneralRe: Finding the menu item the mouse is over for help request Pin
Luc Pattyn4-Jan-08 8:45
sitebuilderLuc Pattyn4-Jan-08 8:45 
Questionpassing a path (ie. c:\thisfolder\thisfile.txt) to ShellExecute... Pin
peepsicola2-Jan-08 6:10
peepsicola2-Jan-08 6:10 
GeneralRe: passing a path (ie. c:\thisfolder\thisfile.txt) to ShellExecute... Pin
Paul Conrad2-Jan-08 6:23
professionalPaul Conrad2-Jan-08 6:23 
GeneralRe: passing a path (ie. c:\thisfolder\thisfile.txt) to ShellExecute... Pin
Mark Salsbery2-Jan-08 7:49
Mark Salsbery2-Jan-08 7:49 
GeneralCANNOT add new database in C++ 2008 (bug BY DESIGN!) Pin
Palavos1-Jan-08 22:07
Palavos1-Jan-08 22:07 
GeneralRe: CANNOT add new database in C++ 2008 (bug BY DESIGN!) Pin
Paul Conrad2-Jan-08 6:26
professionalPaul Conrad2-Jan-08 6:26 
GeneralAbout exe file Pin
minihotto1-Jan-08 18:01
minihotto1-Jan-08 18:01 
GeneralRe: About exe file Pin
led mike2-Jan-08 5:08
led mike2-Jan-08 5:08 
GeneralRe: About exe file Pin
uusheikh8-Jan-08 20:45
uusheikh8-Jan-08 20:45 
GeneralRead a file hosted on server Pin
CodeItWell29-Dec-07 11:14
CodeItWell29-Dec-07 11:14 
GeneralGraphical Interface Program in C ...Having Error ...Please Help Pin
codingrocks27-Dec-07 22:57
codingrocks27-Dec-07 22:57 
GeneralRe: Graphical Interface Program in C ...Having Error ...Please Help Pin
CPallini28-Dec-07 10:53
mveCPallini28-Dec-07 10:53 
QuestionProperties to Property Sheet ? Pin
W Balboos, GHB27-Dec-07 3:56
W Balboos, GHB27-Dec-07 3:56 
QuestionHow to copy winform from one project to another project Pin
s196675m26-Dec-07 12:37
s196675m26-Dec-07 12:37 
AnswerRe: How to copy winform from one project to another project Pin
teejayem27-Dec-07 3:26
teejayem27-Dec-07 3:26 

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.