schultz2146
Technical User
All, first time user of this site... have searched all strings relating to tables and null values and could not find the simple answer that is eluding me. Below is a sniped from a formshow:
Begin
repeat
UserNameComboBox.Items.Add(RegForm.UserTableUserName.Text);
RegForm.UserTable.Next;
until RegForm.UserTableUserName.text = ''
end
As u can see I wanted to add all user names from a table into a combobox at runtime.
What has eluded me is the string
*** until RegForm.UserTableUserName.Text = ''
I've tried value <> null and ~ 10 different derivatives of above to no joy.
All I want it to do is produce a true statement. Do loop until end of file.... Any thoughts?
Begin
repeat
UserNameComboBox.Items.Add(RegForm.UserTableUserName.Text);
RegForm.UserTable.Next;
until RegForm.UserTableUserName.text = ''
end
As u can see I wanted to add all user names from a table into a combobox at runtime.
What has eluded me is the string
*** until RegForm.UserTableUserName.Text = ''
I've tried value <> null and ~ 10 different derivatives of above to no joy.
All I want it to do is produce a true statement. Do loop until end of file.... Any thoughts?