Dears
can i somehow find .dll version (app.major & app.minor & app.version of the .dll project) refrence in my EXE
i have do like this
**** IN MY STANDAR EXE ****
Dim MyObj as object
Dim strVersion as string
set MyObj=CreateObject("MyClass.clsVersion"
strVersion=Myobj.GetVersion
***in my Object*(.dll) project**
Public Function GetVersion() as string
GetVersion=App.Major & "." & App.Minor & "." & App.Revision
end function
i have got this logic and its work but problem is that my standard exe has some 15 objects & in those some are remote objects (IN MTS) so i want is there anyother way to get the versoins of the (.dLL) without making/creating instance as its too costly..
hope to listen from anyone of you
THanxs
Nouman
in this way i can get version from Object
can i somehow find .dll version (app.major & app.minor & app.version of the .dll project) refrence in my EXE
i have do like this
**** IN MY STANDAR EXE ****
Dim MyObj as object
Dim strVersion as string
set MyObj=CreateObject("MyClass.clsVersion"
strVersion=Myobj.GetVersion
***in my Object*(.dll) project**
Public Function GetVersion() as string
GetVersion=App.Major & "." & App.Minor & "." & App.Revision
end function
i have got this logic and its work but problem is that my standard exe has some 15 objects & in those some are remote objects (IN MTS) so i want is there anyother way to get the versoins of the (.dLL) without making/creating instance as its too costly..
hope to listen from anyone of you
THanxs
Nouman
in this way i can get version from Object