Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Is there a site for windows macro's? I want to find or build a macro that creates a hyperlink to a folder. I have a small macro that builds a set of folders (5) and I want, even desire, a way to generate a hyperlink to one of those folders in another folder. The folder that stores all the created links would not be one of the ones created in the macro but a permanent one. Is that possible? and where should I go for help. Thanks, Todd |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This macro creates a shortcut to C:\Windows in the C:\a folder named
test.lnk: Sub MakeFolderShortcut() Dim wsh As Object Dim SC As Object Set wsh = CreateObject("WScript.Shell") Set SC = wsh.CreateShortcut("c:\a\test.lnk") SC.TargetPath = "C:\windows" SC.Save End Sub -- Jim "Todd" wrote in message ... | Hi, | | Is there a site for windows macro's? I want to find or build a macro that | creates a hyperlink to a folder. I have a small macro that builds a set of | folders (5) and I want, even desire, a way to generate a hyperlink to one of | those folders in another folder. The folder that stores all the created links | would not be one of the ones created in the macro but a permanent one. | | Is that possible? and where should I go for help. | | | Thanks, | | Todd |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Running a macro from windows application | Excel Discussion (Misc queries) | |||
Controlling windows explorer with VB macro | Excel Discussion (Misc queries) | |||
Macro switch between windows question | Excel Discussion (Misc queries) | |||
Macro opens two windows | Excel Discussion (Misc queries) | |||
how do I use scopefolders in excel macro in windows xp | Excel Programming |