Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to reference the Revision Number of an Excel Add-In using VBA to
determine if the user has the latest version of the Add-In installed. I figured the best way would be to use a Scripting.FileSystemObject to get to it, but I'm having a little trouble. Here's what I have: Dim fs, f Set fs = CreateObject("Scripting.FileSystemObject") Set f = fs.GetFile(vPath & "\AddIn.xla") I've tried several different ways to get to the Revision number...such as: vRevNo = f.RevisionNumber But that didn't seem to work. Does anyone know how to tap into this field easily? Thanks. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim wb As Workbook
Set wb = "YourAddin.xla" MsgBox wb.BuiltinDocumentProperties("Revision Number") -- Charles Chickering "A good example is twice the value of good advice." "RST" wrote: I am trying to reference the Revision Number of an Excel Add-In using VBA to determine if the user has the latest version of the Add-In installed. I figured the best way would be to use a Scripting.FileSystemObject to get to it, but I'm having a little trouble. Here's what I have: Dim fs, f Set fs = CreateObject("Scripting.FileSystemObject") Set f = fs.GetFile(vPath & "\AddIn.xla") I've tried several different ways to get to the Revision number...such as: vRevNo = f.RevisionNumber But that didn't seem to work. Does anyone know how to tap into this field easily? Thanks. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It doesn't seem to like this either. It won't run the Set wb =
"YourAddin.xla" line. Is it because the add in isn't technically an open workbook? RST "Charles Chickering" wrote: Dim wb As Workbook Set wb = "YourAddin.xla" MsgBox wb.BuiltinDocumentProperties("Revision Number") -- Charles Chickering "A good example is twice the value of good advice." "RST" wrote: I am trying to reference the Revision Number of an Excel Add-In using VBA to determine if the user has the latest version of the Add-In installed. I figured the best way would be to use a Scripting.FileSystemObject to get to it, but I'm having a little trouble. Here's what I have: Dim fs, f Set fs = CreateObject("Scripting.FileSystemObject") Set f = fs.GetFile(vPath & "\AddIn.xla") I've tried several different ways to get to the Revision number...such as: vRevNo = f.RevisionNumber But that didn't seem to work. Does anyone know how to tap into this field easily? Thanks. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Search DSOFile in this ng for examples
Regards, Peter T "RST" wrote in message ... It doesn't seem to like this either. It won't run the Set wb = "YourAddin.xla" line. Is it because the add in isn't technically an open workbook? RST "Charles Chickering" wrote: Dim wb As Workbook Set wb = "YourAddin.xla" MsgBox wb.BuiltinDocumentProperties("Revision Number") -- Charles Chickering "A good example is twice the value of good advice." "RST" wrote: I am trying to reference the Revision Number of an Excel Add-In using VBA to determine if the user has the latest version of the Add-In installed. I figured the best way would be to use a Scripting.FileSystemObject to get to it, but I'm having a little trouble. Here's what I have: Dim fs, f Set fs = CreateObject("Scripting.FileSystemObject") Set f = fs.GetFile(vPath & "\AddIn.xla") I've tried several different ways to get to the Revision number...such as: vRevNo = f.RevisionNumber But that didn't seem to work. Does anyone know how to tap into this field easily? Thanks. |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks! Got it to work with the following code:
vRevNo = Workbooks("AddIn.xla").BuiltinDocumentProperties(" Revision Number") RST "Peter T" wrote: Search DSOFile in this ng for examples Regards, Peter T "RST" wrote in message ... It doesn't seem to like this either. It won't run the Set wb = "YourAddin.xla" line. Is it because the add in isn't technically an open workbook? RST "Charles Chickering" wrote: Dim wb As Workbook Set wb = "YourAddin.xla" MsgBox wb.BuiltinDocumentProperties("Revision Number") -- Charles Chickering "A good example is twice the value of good advice." "RST" wrote: I am trying to reference the Revision Number of an Excel Add-In using VBA to determine if the user has the latest version of the Add-In installed. I figured the best way would be to use a Scripting.FileSystemObject to get to it, but I'm having a little trouble. Here's what I have: Dim fs, f Set fs = CreateObject("Scripting.FileSystemObject") Set f = fs.GetFile(vPath & "\AddIn.xla") I've tried several different ways to get to the Revision number...such as: vRevNo = f.RevisionNumber But that didn't seem to work. Does anyone know how to tap into this field easily? Thanks. |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sry, It should have read:
Set wb = Workbooks("YourAddin.xla") -- Charles Chickering "A good example is twice the value of good advice." "RST" wrote: It doesn't seem to like this either. It won't run the Set wb = "YourAddin.xla" line. Is it because the add in isn't technically an open workbook? RST "Charles Chickering" wrote: Dim wb As Workbook Set wb = "YourAddin.xla" MsgBox wb.BuiltinDocumentProperties("Revision Number") -- Charles Chickering "A good example is twice the value of good advice." "RST" wrote: I am trying to reference the Revision Number of an Excel Add-In using VBA to determine if the user has the latest version of the Add-In installed. I figured the best way would be to use a Scripting.FileSystemObject to get to it, but I'm having a little trouble. Here's what I have: Dim fs, f Set fs = CreateObject("Scripting.FileSystemObject") Set f = fs.GetFile(vPath & "\AddIn.xla") I've tried several different ways to get to the Revision number...such as: vRevNo = f.RevisionNumber But that didn't seem to work. Does anyone know how to tap into this field easily? Thanks. |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I misunderstood, I thought you meant the file was not open. But if open
indeed your code should work. Regards, Peter T "RST" wrote in message ... Thanks! Got it to work with the following code: vRevNo = Workbooks("AddIn.xla").BuiltinDocumentProperties(" Revision Number") RST "Peter T" wrote: Search DSOFile in this ng for examples Regards, Peter T "RST" wrote in message ... It doesn't seem to like this either. It won't run the Set wb = "YourAddin.xla" line. Is it because the add in isn't technically an open workbook? RST "Charles Chickering" wrote: Dim wb As Workbook Set wb = "YourAddin.xla" MsgBox wb.BuiltinDocumentProperties("Revision Number") -- Charles Chickering "A good example is twice the value of good advice." "RST" wrote: I am trying to reference the Revision Number of an Excel Add-In using VBA to determine if the user has the latest version of the Add-In installed. I figured the best way would be to use a Scripting.FileSystemObject to get to it, but I'm having a little trouble. Here's what I have: Dim fs, f Set fs = CreateObject("Scripting.FileSystemObject") Set f = fs.GetFile(vPath & "\AddIn.xla") I've tried several different ways to get to the Revision number...such as: vRevNo = f.RevisionNumber But that didn't seem to work. Does anyone know how to tap into this field easily? Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
XL 2003:Revision Number and Total Editing Time Boxes Are Empty | Excel Discussion (Misc queries) | |||
Revision | Excel Discussion (Misc queries) | |||
Worksheet Revision Date only once that day | Excel Discussion (Misc queries) | |||
Revision Number | Excel Worksheet Functions | |||
Notation on Revision of Projects | Excel Programming |