Dim oEntries As CTableEntries
Set oEntries = New CTableEntries
'Load the entries for the States table
oEntries.Init REApplication.SessionContext, tbnumCountry
Dim oEntry As CTableEntry
'Loop through each entry in the states table and display short and long description
For Each oEntry In oEntries
MsgBox oEntry.Fields(tableentry_fld_SHORTDESCRIPTION) & ", " & oEntry.Fields(tableentry_fld_LONGDESCRIPTION)
oEntry.CloseDown
Next oEntry
'Clean-up
oEntries.CloseDown
Set oEntries = Nothing
Set oEntry = Nothing
End Sub
Disclaimer: We provide programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes you are familiar with Microsoft Visual Basic and the tools used to create and debug procedures. Our Customer Support can help explain the functionality of a particular procedure, but we will not modify, or assist you with modifying, these examples to provide additional functionality. If you are interested in learning more about the VBA and API modules, contact your account manager.