I am using VB 6.0 how do I make a program install a desktop icon during installation. I am very new to programming. Please be specific.
Thanks Alot,
Printable View
I am using VB 6.0 how do I make a program install a desktop icon during installation. I am very new to programming. Please be specific.
Thanks Alot,
Code:'In declarations:
Private Declare Function fCreateShellLink Lib "STKIT432.DLL" (ByVal lpstrFolderName As String, ByVal lpstrLinkName As String, ByVal lpstrLinkPath As String, ByVal lpstrLinkArgs As String) As Long
'In code:
fCreateShellLink "C:\windows\Desktop", "my program", filepath, ""
whats the code for this to work on VB 3.0 pro?