views:

40

answers:

1

I am invoking a C# object from a Visual Basic 6.0 sub routine (don't ask). How do I get the AssemblyFileVersion from Visual Basic?

+1  A: 

Hi there.

If you're trying to do this from VB6, then you will need something like this:

http://www.visualbasic.happycodings.com/Files_Directories_Drives/code30.html

Using the Windows API should give you what you need.

EDIT:

Don't know if this might also help:

http://support.microsoft.com/kb/186118

Shows how to use the FileSystemObject which could be an easier way to get file information.

Cheers. Jas.

Jason Evans