Stuart McLachlan
stuart at lexacorp.com.pg
Thu Oct 26 04:20:10 CDT 2006
On 26 Oct 2006 at 11:02, Kostas Konstantinidis wrote: > Andy It works, > but is it posible for access to remember the specific folder > in which the files are stored ? > say that cause the folder is always the same (e.g \test) and may be its not > necessary to keep that path in every record. Just only the file name thank's Call RunApp("C:\Test\" & Me.ActiveControl,1) or strPath = "C:\Test\" Call RunApp(strTest & Me.ActiveControl,1) or if the files are in the same directory as the Access application strPath = CurrentProject.Path & "\" Call RunApp(strTest & Me.ActiveControl,1) -- Stuart