Button

  • Thread starter Thread starter Nathan
  • Start date Start date
N

Nathan

Is there a way i can have a button to open a file in the
folder the database is in and have the file open in the
proper program

ex
when the button is clicked
text.doc opens in word
or
text.btw opens in bartender

Thanks in advance
 
Try using the Shell command on the click event

eg

Call Shell("Word.EXE "" MyWordFile.doc""", 1)
 
Back
Top