Desktop Icon placed by VBA

coasterfreak

New Member
Joined
Sep 11, 2008
Messages
25
I have been trying to get a desktop Icon placed through the use of VBA. I have found and use code from http://www.vbaexpress.com/kb/getarticle.php?kb_id=584 . and it works with just a little change. my problem is the icon is a blank icon with no picture. I would like to be able to place a pic. or icon from list as the pic (The Excell look icon will work). Any help would be great. If you need more information please ask. Thanks in advance for help.<!-- / message -->
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
This code uses the icon for the application as set up in windows :-
(you can see that it needs STKIT432.DLL to work. Seems to come with XP)
Code:
'==========================================================
'- SHORTCUT TO DESKTOP
'==========================================================
Declare Function fCreateShellLink Lib "STKIT432.DLL" _
(ByVal lpstrFolderName As String, ByVal lpstrLinkName _
As String, ByVal lpstrLinkPath As String, ByVal _
lpstrLinkArgs As String) As Long
'==========================================================
Sub ADD_SHORTCUT()
    Dim ProgPath As String
    Dim ProgName As String    ' shortcut caption
    Dim ProgFile As String
    Dim MyResult As Long
    '------------------------------------------------------
    ProgPath = "F:\"
    ProgFile = "book1.xls"
    ProgName = "My Excel Shortcut"
    '------------------------------------------------------
    MyResult = fCreateShellLink("..\..\Desktop", _
    ProgName, ProgPath & ProgFile, "")
    '------------------------------------------------------
    MsgBox (IIf(MyResult = 1, "Successful", "Unsuccessful"))
End Sub
'------------------------------------------------------------
 
Upvote 0
The constants in this code let you define the Icon Name, currently the Icon file is in the active Folder!
It then places your shortCut on the DeskTop, you need to set the properties for the ShortCut:

Sub myCreateShortCut()
'Standard module code, like: Module1.
Dim objWinScript As Object, objShortCut As Object
Dim strPathSep$, strWBNm$, strFullWBNm$, strThisWBPath$, strDeskTop$, strShortCut$

On Error GoTo myErr

Const constTypeOfShortCut$ = ".lnk"
Const constShortCutWhere$ = "Desktop"
Const constIconNm$ = "\aroundWorld.ico" 'Must be in current folder!

strThisWBPath = ThisWorkbook.Path
strFullWBNm = ThisWorkbook.FullName
strPathSep = Application.PathSeparator
strWBNm = strPathSep & ThisWorkbook.Name

Set objWinScript = CreateObject("WScript.Shell")

strDeskTop = objWinScript.SpecialFolders(constShortCutWhere)
strShortCut = strDeskTop & strWBNm & constTypeOfShortCut

Set objShortCut = objWinScript.CreateShortCut(strShortCut)

With objShortCut
.TargetPath = strFullWBNm
.IconLocation = strThisWBPath & constIconNm
.Save
End With

MsgBox "Shortcut placed on:" & Space(3) & """" & constShortCutWhere & """" & _
Space(3) & "as a:" & Space(3) & """" & constTypeOfShortCut & ".""" & vbLf & vbLf & _
"ShortCut Icon Folder\Name:" & vbLf & strThisWBPath & constIconNm, _
vbInformation + vbOKOnly, _
"Build ShortCut Complete!"

Set objWinScript = Nothing

GoTo myEnd

myErr:
MsgBox "Your ""ShortCut"" failed to be created!", _
vbCritical + vbOKOnly, _
"Error!"

myEnd:
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,774
Messages
6,132,647
Members
449,740
Latest member
Stevejhonsy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top