Debug_SayAll

Purpose
This function allows you view the entire contents of the database in a message box and is useful for debugging purposes.

Syntax (Method)
object.Debug_SayAll

Notes
This function displays a standard Windows message box displaying the record count, and the key and data contained in each record.

Error Values
This function does not change the state of the ErrorNumber property.

Example
Objective: Demonstrate usage of the Debug_SayAll function.

'Create a database
Dim CDP As rtCDP.rtCompactDataPak
Set CDP = New
rtCDP.rtCompactDataPak
'Add a record to the database
CDP.Append "Band", "Journey"
'Display the "Say All" debug window
CDP.Debug_SayAll

Version History
1.0 1/30/2001 Tested

See Also
Count