This is the code i use for creating shortcut on Start Menu but now problem is i don't know how to delete the same shortcut from VB. If any one knows ? help me. Thank you.

Declare Function fCreateShellLink Lib "vb5stkit.DLL" (ByVal lpstrFolderName As String, ByVal lpstrLinkName As String, ByVal lpstrLinkPath As String, ByVal lpstrLinkArgs As String) As Long

Private Sub Command1_Click()

Dim longReturn As Long
longReturn = fCreateShellLink("..\..\Start Menu", App.Title, App.Path & "\MyProgram.exe", "")

End Sub