open dialog

J

joemo2003

what i try to do is to create a click button in Visio macro form, when I
click that button, it open a excel file in a new excel window. What is the
code for that click? anybody help?
 
A

Al Edlund

try something like this,
al


Private Sub StartExcel()
Set appExcel = New Excel.Application
appExcel.Visible = true
End Sub
 
Top