ADO ParentURL Property

Home | About me | EXCEL VB Programming (XL97-2003) | ACCESS Programming | EXCEL VB.Net Programming | EXCEL Spreadsheet Functions Material Management  |  Guestbook
 

ADO ParentURL Property

The ParentURL property returns a string value that contains the absolute URL of the parent Record.

The ParentURL property returns a string that is the absolute URL of the parent Record. An absolute URL is the path to the location of a resource on the Internet/Intranet.

This property will return a null if there is no parent for the object or if the Record object cannot be represented by a URL.

Syntax

strparent=objrecord.ParentURL

Example

strURL = objRecord.ParentURL
If IsNull(strURL) Then
   MsgBox "Parent URL is null", vbOK
End If