NewVersionInt Property
      
 

Description

Provides indexed access to remote new version information.


Property type

A Long value.  


Syntax

object.NewVersionInt(Index) [= value]



The NewVersionInt Property syntax has these parts:

Part Description
object An expression evaluating to an object of type UpdFile.
Index Required. An Integer value. Index of subversion number in version information.
value A Long value.

Remarks

This property holds part of the NewVersion version information. Using this property you don't have to parse NewVersion property manually since NewVersionInt does it for you.

For instance, you can do this:

Debug.Print Upd1.Files(0).NewVersion
1.2.4.8

Debug.Print Upd1.Files(0).NewVersionInt(0)
1

Debug.Print Upd1.Files(0).NewVersionInt(1)
2

etc..