Application Shortcut
-
I have created one application in VB.Net. I want to create one shortcut for it like Window key+E (for Explorer). How can i do that?
I'll need some clarification. Are you looking for a shortcut like from you own desktop or are you looking for how to create a shortcut to your application from within a distribution set? So as to automatically create a shortcut on a users PC desktop when installing your app.
Jelle
-
I have created one application in VB.Net. I want to create one shortcut for it like Window key+E (for Explorer). How can i do that?
You will need to use Win32 API. here are functions you can use...
[DllImport("USER32.dll")] public static extern bool RegisterHotKey(IntPtr hWnd, int id, int fsModifiers, int vlc); [DllImport("USER32.dll")] public static extern bool UnregisterHotKey(IntPtr hWnd, int id);
"If our Mind can, the Program can !!"
-
I'll need some clarification. Are you looking for a shortcut like from you own desktop or are you looking for how to create a shortcut to your application from within a distribution set? So as to automatically create a shortcut on a users PC desktop when installing your app.
Jelle
-
I have created one application in VB.Net. I want to create one shortcut for it like Window key+E (for Explorer). How can i do that?