MSI Factory 2.3

MSI.RecordIsNull

MSI.RecordIsNull

This is the first topic This is the last topic  

MSI.RecordIsNull

This is the first topic This is the last topic  

OverviewExamples

boolean MSI.RecordIsNull (

number hRecord,

number Field )

Example 1

-- 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