I created an Acc97 mdb to keep track of tons of documents created with several softwares like word, excel, paintbrush, etc. The main form shows records with name of the document, subject, notes, etc. To allow user to open a document I created a hyperlink field. Click on the hyperlink field and the document is opened by Windows with the proper application. If the user changes the name of the document (field Doc), vba code updates the hyperlink (field Link) properly. It works ok.
The solution is convenient because it doesn't need to define the application which will open the document and because it allows user to edit the name of the document.
But it renders the form with two fields containing the name of the document (field Doc and field Link).
Is there a way to open the document without having the hyperlink Link field? Like double click on the field Doc to open a document without defining its application.
Thank you