Programmatically open start menu possible?

  • Thread starter Thread starter juvi
  • Start date Start date
J

juvi

Hello,

Is it possible to open the start menu programmatically in .net cf - c#?

thx in advance
juvi
 
You can hack it together with simulated mouse movements, but why would you
want to? What's the goal here?

-Chris
 
Thank you all for your replies.

Paul G. Tobey's solution seems to be the good one for me. I am writing a
fullscreen application where I need to be able to open the start menu through
a button.

thx for all help.
 
Lost me there. If you allow the Start Menu to be shown, you're no longer a
full screen application...

Paul T.
 
I want to use OpenNETCF.Windows.Forms.SendKeys.Send("Ctrl+Esc"); and its not
working...what I am doing wrong?
 
I was simply indicating what you needed to send, not a specific string for
SendKeys (which I've never used). In fact, it looks like something along
the lines of "^{ESC}", which is still pretty user-friendly, is the answer.
Nothing you shouldn't have been able to figure out yourself.

Paul T.
 
Back
Top