Aug 31, 2001 #1 ftpdoo Programmer Joined Aug 9, 2001 Messages 202 Location GB Hi, How can I check which version of MS Word is installed on a machine??? Thnx, Jonathan
Aug 31, 2001 #2 vbMax Programmer Joined Jul 16, 2001 Messages 92 Location US If you go to Control Panel then "Add/Remove Programs", you can see what version of Office is installed. From within Word, you can choose "About" from the Help menu. With VBA code, use: rsp = MsgBox("Version: " + Application.Version, _ vbInformation, "Version" Upvote 0 Downvote
If you go to Control Panel then "Add/Remove Programs", you can see what version of Office is installed. From within Word, you can choose "About" from the Help menu. With VBA code, use: rsp = MsgBox("Version: " + Application.Version, _ vbInformation, "Version"
Aug 31, 2001 #3 JoaoTL Programmer Joined Jun 14, 2001 Messages 278 Location PT Hi, Assuming that you whant to do that from Code, try this http://www.mvps.org/access/api/api0065.htm Hope it helps Best Regards --- JoaoTL NOSPAM_mail@jtl.co.pt http://www.jtl.co.pthttp://www.jtl.co.pt/Access/eng/FAQE.htm Upvote 0 Downvote
Hi, Assuming that you whant to do that from Code, try this http://www.mvps.org/access/api/api0065.htm Hope it helps Best Regards --- JoaoTL NOSPAM_mail@jtl.co.pt http://www.jtl.co.pthttp://www.jtl.co.pt/Access/eng/FAQE.htm
Sep 3, 2001 Thread starter #4 ftpdoo Programmer Joined Aug 9, 2001 Messages 202 Location GB Thnx, Is there any way just to simply check is MS Word installed on the local machine from VBA code?? Jonathan Upvote 0 Downvote
Thnx, Is there any way just to simply check is MS Word installed on the local machine from VBA code?? Jonathan