Results 1 to 2 of 2

Thread: Hyperlink issue

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #2
    VBAX Regular
    Joined
    Jun 2005
    Posts
    87
    Location
    Is this a button on a switchboard? If so, you can do something like this in your switchboard:
    [VBA] Case 1
    Dim oApp2 As Object
    Set oApp2 = CreateObject("Word.Application")
    oApp2.Documents.Open "C:\Database\val\Letter2.doc"
    oApp2.Visible = True
    [/VBA]
    Last edited by xCav8r; 08-05-2005 at 10:35 PM. Reason: added vba tags

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •