Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all, i am using the script below to check for and install a desktop
shortcut. However it does not see that there is a shortcut already, but installs it ok. I do not know if i must have a certain "referance" flagged or not. Any help would be appreciated... Sub testme02() Dim oWSH As Object Dim oShortcut As Object Dim sPathDeskTop As String Dim testStr As String Set oWSH = CreateObject("WScript.Shell") sPathDeskTop = oWSH.SpecialFolders("Desktop") testStr = "" On Error Resume Next testStr = Dir(sPathDeskTop & "\" & ActiveWorkbook.Name & ".lnk") On Error GoTo 0 If testStr = "" Then 'not found Set oShortcut = oWSH.CreateShortCut(sPathDeskTop & "\" & _ ActiveWorkbook.Name & ".lnk") With oShortcut .Description = "hi there" .TargetPath = ActiveWorkbook.FullName .IconLocation = "\\nv09002\tpdrive\TM-Recon\macro\scale.ico" .Save End With Set oWSH = Nothing Else MsgBox "found it" End If end sub -- Les |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Script problem - Help please | Excel Programming | |||
sub script out of range problem | Excel Programming | |||
Problem with printing from VB-script in Excel | Excel Programming | |||
Row deleting script problem | Excel Programming | |||
Graph problem with VBA script | Excel Programming |