G
Guest
I have written a simple program that does some documenting of the
applications forms. However, I am missing one element the forms Caption
Property.
I have included the code that I wrote:
For i = 0 To con.Documents.Count - 1
x = con.Documents(i).Properties("Description")
If Left(x, 1) = "(" Then
rs.AddNew
rs!FormID = Mid(x, 1, 8)
rs!FormName = con.Documents(i).Name
'*************************************************
' the following line of code does not appear to do anything.
' It most certainly doesn't acquire the "Caption" property values.
'*************************************************
rs!formcap = con.Documents(i).Properties("Caption")
rs!formdesc = x
rs.Update
End If
Next
thanks Dean
I am using Access 97
applications forms. However, I am missing one element the forms Caption
Property.
I have included the code that I wrote:
For i = 0 To con.Documents.Count - 1
x = con.Documents(i).Properties("Description")
If Left(x, 1) = "(" Then
rs.AddNew
rs!FormID = Mid(x, 1, 8)
rs!FormName = con.Documents(i).Name
'*************************************************
' the following line of code does not appear to do anything.
' It most certainly doesn't acquire the "Caption" property values.
'*************************************************
rs!formcap = con.Documents(i).Properties("Caption")
rs!formdesc = x
rs.Update
End If
Next
thanks Dean
I am using Access 97