MSI.RecordIsNull |
|
|
|
MSI.RecordIsNull |
|
|
|
|
||
OverviewExamples
-- Create a new record
record = MSI.CreateRecord(46546);
-- Set a string value
result = MSI.RecordSetString(record, 001, "MyStringValue");
-- is it null
bisNull = MSI.RecordIsNull(record, 001);
if not bisNull then
strGetString = MSI.RecordGetString(record, 001);
Dialog.Message("strGetString",strGetString);
end
Sets a string in a record, checks if it is null, then gets the value and shows it in a dialog message.
See also: Related Actions
Learn More: Indigo Rose Software - MSI Factory - Buy Now - Contact Us