Microsoft & .NETVisual BasicAdding Shortcuts to Windows 95

Adding Shortcuts to Windows 95

Developer.com content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More.

If you would like to add a shortcut to your program in the Start Menu, you can use the undocumented API call that is used in the setupkit.

Declarations

You must declare the following in the declarations section of a project.

Declare Function fCreateShellLink Lib_
"STKIT432.DLL" _
(ByVal lpstrFolderName as String, ByVal_
lpstrLinkName _
as String, ByVal lpstrLinkPath_
as String, ByVal _
lpstrLinkArgs as String) As Long

Use

To add a shortcut to the Start Menu, you call the function with these parameters:

  • Where to place the link in relation to the Programs folder on the Start Menu.
  • Name or Text to appear in the link.
  • Path of the file to link to.
  • Arguments for the file.

For instance, to add a shortcut to the desktop, you would use the following code:

lngResult = fCreateShellLink("....Desktop", _
"Link to my program", "C:PathProgram.exe","")

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Latest Posts

Related Stories