i would like to read my apps exe information into a label caption using a menu command "Help About" in the same app.
How do i read the exe information or at the minimum just the exe version?
Printable View
i would like to read my apps exe information into a label caption using a menu command "Help About" in the same app.
How do i read the exe information or at the minimum just the exe version?
Take a look at the properties of the App object, especially App.Major and App.Minor, eg:
There are several others too, which will be listed when you type the dotCode:MsgBox App.Major
Thank you Si.