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]