VALID Property for EditTables (OpenInsight 32-bit Specific)
At 15 APR 2004 08:23:38PM Tom Savell wrote:
I have been out of the loop for a while and I don't remember how to programatically set the validation properties for a specific column, 'C', in an EditTable, EditTableName'.
I believe I should use:
x=Set_Property(EditTableName, 'VALID', ?values?)
But, I don't know what to put in ?values? to define the static list of validation patterns, Vlist, to be imposed on column 'C' in the EditTable.
At 16 APR 2004 02:42AM [url=http://www.sprezzatura.com]The Sprezzatura Group[/url] wrote:
Tom,
The VALID property is an @svm delimited array of validation patterns - one sub-value for each column.. So to set the 3rd column to "(D)" you'd do something like this
validArray=get_Property( @window : ".TABLE_1", "VALID" )
validArray=(D)"
call set_Property( @window : ".TABLE_1", "VALID", validArray )
World leaders in all things RevSoft
At 16 APR 2004 11:33AM Tom Savell wrote:
Thank you for your quick and detailed response.