OS = Windows XP SP3 Professional; VB 6 Enterprise Edition
I am trying to programmatically change the Version Number that is shown in the ABOUT form, specifically the Revision. Must this be done through an API?
If so, I found this API:
Is this the correct one to use?
Can you help me out with the coding? I never used an API in coding before.
Thanks,
Sam
I am trying to programmatically change the Version Number that is shown in the ABOUT form, specifically the Revision. Must this be done through an API?
If so, I found this API:
Code:
Declare Function GetFileVersionInfo& Lib "version.dll" Alias _
"GetFileVersionInfoA" (ByVal lpstrFileName As String, _
ByVal dwlen As Long, lpData As Byte)
Is this the correct one to use?
Can you help me out with the coding? I never used an API in coding before.
Thanks,
Sam