P
Perry
I have a macro created on sheet that I want executed when I double click an
on object:
Sub macro1()
x = Shell("RUNDLL32.EXE URL.DLL,FileProtocolHandler
http://www.someplace.com/", vbNormalFocus)
End Sub
That part works fine, however, what I would really like it to do is have the
macro grab a custom property from the shape, such as prop.IPAddress, and have
it go to http://{prop.IPAddress}
on object:
Sub macro1()
x = Shell("RUNDLL32.EXE URL.DLL,FileProtocolHandler
http://www.someplace.com/", vbNormalFocus)
End Sub
That part works fine, however, what I would really like it to do is have the
macro grab a custom property from the shape, such as prop.IPAddress, and have
it go to http://{prop.IPAddress}