Accessing The Windows System Information

T

Tru

Is there a way to display the Windows System Information similar to how
Access displays it when you go to the help menu and Click "About Microsoft
Office Access"
 
G

Granny Spitz via AccessMonster.com

Tru said:
Is there a way to display the Windows System Information similar to how
Access displays it when you go to the help menu and Click "About Microsoft
Office Access"

This is the easiest way:

SendKeys "%S", False
RunCommand acCmdAboutMicrosoftAccess
 
B

Bob Hairgrove

Is there a way to display the Windows System Information similar to how
Access displays it when you go to the help menu and Click "About Microsoft
Office Access"

It's fortunately pretty simple: you just run "mmc.exe" as an external
program using the VBA Shell() function and add the path to the file
"msinfo32.msc" as a command-line argument.
 
Top