Home All Groups Group Topic Archive Search About
Author
23 May 2009 1:17 PM
Abhishek
how to programmatically open the windows Run dialog (Win Key + R) ?

thanks!

Author
23 May 2009 1:44 PM
Larry Serflaten
"Abhishek" <m*@server.com> wrote
> how to programmatically open the windows Run dialog (Win Key + R) ?

Private Sub Command1_Click()
   CreateObject("Shell.Application").FileRun
End Sub


LFS