Returns a Linktab object.
// get accessor Linktab rtn = XSIUtils.Linktab; |
' Get the linktab object
Set l_linktab = xsiutils.linktab
' Use the linktab object to obtain a collection of linktab rules
if l_linktab.Filename(szFilename) = "True" then
Application.LogMessage szFilename
else
Application.LogMessage "Linktab filename not set"
end if
|