Scripting

  • 1.  Need to create a script to assign a text value to

    Posted 10-16-2012 15:14
    Need to create a script to assign a text value to a field based on whether some date fields on the same screen have values (any value) or not. How are null dates portrayed in scripting? Is there an ISNULL command, or no?


  • 2.  RE: Need to create a script to assign a text value to

    Posted 10-17-2012 06:33
    If a date field is blank, a blank string will be returned by a GetValue. A conidtion of tmpStr = """" will test for a blank date. Just make sure you initialize your variable before doing the GetValue.


  • 3.  RE: Need to create a script to assign a text value to

    Posted 10-17-2012 11:05
    THANKS SO MUCH! Blank is so much easier to deal with than NULL. :-)