Home |
Search |
Today's Posts |
#5
![]() |
|||
|
|||
![]()
and another possibility would be to programmatically create an
Excel shortcut -- an example of which might be http://www.mvps.org/dmcritchie/excel...x2k.htm#foobar which might be of interest to Excel 2003 users and I hope the next version of Excel does not repeat misuse of Ctrl+A. My goodness, what one can learn with an ambiguous question. --- HTH, David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001] My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm Search Page: http://www.mvps.org/dmcritchie/excel/search.htm "Bob Phillips" wrote in message ... I have of course read the subject as creating a shortcut to the file on the desktop. -- HTH RP (remove nothere from the email address if mailing direct) "Bob Phillips" wrote in message ... Sub CreateShortCut() Dim oWSH As Object Dim oShortcut As Object Dim sPathDeskTop As String Set oWSH = CreateObject("WScript.Shell") sPathDeskTop = oWSH.SpecialFolders("Desktop") Set oShortcut = oWSH.CreateShortCut(sPathDeskTop & "\" & _ ActiveWorkbook.Name & ".lnk") With oShortcut .TargetPath = ActiveWorkbook.FullName .Save End With Set oWSH = Nothing End Sub -- HTH RP (remove nothere from the email address if mailing direct) "bk1803" wrote in message ... |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
create excel spreadsheet to display data from filled text forms | Excel Discussion (Misc queries) | |||
Create a custom footer for all Excel worksheets at one time... | Excel Discussion (Misc queries) | |||
create price list from excel sheet | Excel Discussion (Misc queries) | |||
how do I create qif files from Excel for import into Quicken? | Excel Discussion (Misc queries) | |||
Is there a way to create a standard OHLC bar chart in Excel? | Charts and Charting in Excel |