Close
Applies to
VAccess
Description
Closes the file associated with the control and returns the status of the close operation.
Syntax
object.Close
The syntax for this method has the following parts:
 
Remarks
This method attempts to close the file associated with object, and returns the PSQL status code from the operation. A return value of zero indicates success.
Example
If index > -1 Then 'selected from list
VAccess1.Close
VAccess1.FileName = Combo1.List(index)
VAccess1.Open
End If