G Guest Apr 20, 2007 #1 hi i would like to know how to open xl sheet documnet by using command botton in access form thank in advanced
hi i would like to know how to open xl sheet documnet by using command botton in access form thank in advanced
G Guest Apr 20, 2007 #2 There are different approaches possible but the easiest would best to simply use Application.FollowHyperlink Application.FollowHyperlink "PathandFilename" Application.FollowHyperlink "C:\temp\test.xls" If your path is on your form in a textbox named txtXLSFile for example then youd do something like Application.FollowHyperlink me.txtXLSFile For more info lookup FollowHyperlink in the help.
There are different approaches possible but the easiest would best to simply use Application.FollowHyperlink Application.FollowHyperlink "PathandFilename" Application.FollowHyperlink "C:\temp\test.xls" If your path is on your form in a textbox named txtXLSFile for example then youd do something like Application.FollowHyperlink me.txtXLSFile For more info lookup FollowHyperlink in the help.