Previous Topic

Next Topic

Book Contents

Book Index

LinkAccountFiles - MaxBasic function

LinkAccountFiles : Object

LinkAccountFiles function returns a StringList Object containing a string list of the tables that support links.

Sample code:

Dim List as Object

List = LinkAccountFiles

For I = 0 to List.Count - 1

Print List[I]

Next I

Print ""

Print "Total: " & List.Count