Do you know I can find documentation on commands for these data tables within a scrolling window. I used to have if but I can no longer find it. I want to research fine tuning some of my code. I am looking for documentation on commands such as the ones below.
Microsoft.Dexterity.Applications.DynamicsDictionary.RmDistributionHistoryTable RMHistDistTable;
/* This points to the form table buffer */
RMHistDistTable = Dynamics.Tables.RmDistributionHistory;
RMHistDistTable.Key = 1;
RMHistDistTable.Clear();
RMHistDistTable.RangeClear();
RMHistDistTable.DocumentNumber.Value = VoucherNumber;
RMHistDistTable.RangeStart();
RMHistDistTable.Fill();
RMHistDistTable.DocumentNumber.Value = VoucherNumber;
RMHistDistTable.RangeEnd();
err = RMHistDistTable.GetFirst();
while (err != TableError.EndOfTable)
{
Do stuff..
}