how do i extract the date and time my exe file is complied, so i can show it on the about screen alongside the version number....?
Printable View
how do i extract the date and time my exe file is complied, so i can show it on the about screen alongside the version number....?
Take a look on this sample program. and sure you'll know how to do it.
:)
You could also simply say something like
lblFiledate = Format$(FileDateTime(App.Path & "\" & App.EXEName & ".exe"), "Your date format")
With FileDate you only get the file creation date, not the compile date. For a working sample for compile date, have a look at: http://www.vbforums.com/showthread.php?threadid=76843