Help with executable version information requried??

  • Thread starter Thread starter Norman Fritag
  • Start date Start date
N

Norman Fritag

Hi there,

I am wondering if someone could point me into the right direction.
I am looking for a code, way to retrieve the description and the Productname
of en executable file? ( using Vb version 6)

Any ideas/

Regards

Norman
 
Hi Norman,

I think the best idea I can give you to ask this in a vb classic newsgroup

microsoft.public.vb * there are a lost.

Here I could give it you for vb.net, but you have nothing on it because it
is totaly different?

Cor
 
* "Norman Fritag said:
I am wondering if someone could point me into the right direction.
I am looking for a code, way to retrieve the description and the Productname
of en executable file? ( using Vb version 6)

\\\
lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
lblTitle.Caption = App.Title
///

Notice that this is a VB.NET language group, please post VB6 related
questions to one of the microsoft.public.vb.* groups.
 
Back
Top