View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
mflowers mflowers is offline
external usenet poster
 
Posts: 1
Default Modify Insert Object Macro


I need to modify the following macro so that it will pop up
the Insert Object dialog box, but not have Link to File or Display as icon
preselected.

Sub showDialog()
'INSERT.OBJECT?(object_class, file_name, link_logical,
' display_icon_logical, icon_file, icon_number, icon_label)
ExecuteExcel4Macro "INSERT.OBJECT?(,""C:\"",False,True,)"
End Sub