Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jim Jim is offline
external usenet poster
 
Posts: 615
Default Creating a hyperlink in VBA for an autoshape

ok, so i have created an autoshape on a spreadsheet, I have created a macro
for it and need it to link to a file in another directory. the reason i am
not just creating a "right click--create hyperlink" is because it is getting
screwed up when i run the main program. I want to know how to write it in VB
so it automatically creates the hyperlink thru the macro.

Sub Rectangle5_Click( )
make hyperlink to c:\myfile.doc
End Sub

thanks
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default Creating a hyperlink in VBA for an autoshape

You want to create a hyperlink or do you want to perform the action a
hyperlink would perform?

--
Regards,
Tom Ogilvy


"Jim" wrote:

ok, so i have created an autoshape on a spreadsheet, I have created a macro
for it and need it to link to a file in another directory. the reason i am
not just creating a "right click--create hyperlink" is because it is getting
screwed up when i run the main program. I want to know how to write it in VB
so it automatically creates the hyperlink thru the macro.

Sub Rectangle5_Click( )
make hyperlink to c:\myfile.doc
End Sub

thanks

  #3   Report Post  
Posted to microsoft.public.excel.programming
Jim Jim is offline
external usenet poster
 
Posts: 615
Default Creating a hyperlink in VBA for an autoshape

I want the file to open when I click on the shape and I want to do it thru a
macro. so I guess to answer your question, perform the action that a
hyperlink would.

"Tom Ogilvy" wrote:

You want to create a hyperlink or do you want to perform the action a
hyperlink would perform?

--
Regards,
Tom Ogilvy


"Jim" wrote:

ok, so i have created an autoshape on a spreadsheet, I have created a macro
for it and need it to link to a file in another directory. the reason i am
not just creating a "right click--create hyperlink" is because it is getting
screwed up when i run the main program. I want to know how to write it in VB
so it automatically creates the hyperlink thru the macro.

Sub Rectangle5_Click( )
make hyperlink to c:\myfile.doc
End Sub

thanks

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Creating a hyperlink in VBA for an autoshape

Executing this statement should open up your file using the associated
program for its extension (in the case of your original posting, Word should
open up and your myfile.doc document should be loaded automatically)...

Shell Environ("COMSPEC") & " /c ""c:\myfile.doc""", vbHide

Make sure you preserve the spacing and quote marks as shown when
substituting your actual file name in for the sample myfile.doc one.

Rick


"Jim" wrote in message
...
I want the file to open when I click on the shape and I want to do it thru
a
macro. so I guess to answer your question, perform the action that a
hyperlink would.

"Tom Ogilvy" wrote:

You want to create a hyperlink or do you want to perform the action a
hyperlink would perform?

--
Regards,
Tom Ogilvy


"Jim" wrote:

ok, so i have created an autoshape on a spreadsheet, I have created a
macro
for it and need it to link to a file in another directory. the reason i
am
not just creating a "right click--create hyperlink" is because it is
getting
screwed up when i run the main program. I want to know how to write it
in VB
so it automatically creates the hyperlink thru the macro.

Sub Rectangle5_Click( )
make hyperlink to c:\myfile.doc
End Sub

thanks


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Creating a hyperlink Louise New Users to Excel 3 November 4th 09 12:22 AM
Creating a HyperLink Robin Clay Excel Discussion (Misc queries) 1 July 7th 08 12:28 PM
Hyperlink in AutoShape Gecko Excel Discussion (Misc queries) 5 March 17th 06 01:28 PM
Help with creating hyperlink via VBA FrigidDigit[_2_] Excel Programming 8 October 19th 05 06:14 PM
Creating a "Smart" Autoshape Stan Excel Programming 3 March 24th 05 08:19 PM


All times are GMT +1. The time now is 09:19 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"