Home RAP
New Blog Posts: Merging Reports - Part 1 and Part 2

DateTime Data Type

edited September 2007 in RAP
I want to check for a date value, but for the life of me I can't find
anywhere in the rap help file how to do it and

Comments

  • edited September 2007
    Null date would be handy too.

  • edited September 2007
    RAP supports the Date, DateTime, and Time data types. These types work the
    same as they do in Delphi. See the RAP Language Overview topic in the RAP
    Reference help for everything supported.

    --
    Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
  • edited September 2007
    ----------------------------------------------
    Tech Tip: RAP: Checking for Null Data Values
    ----------------------------------------------

    The DataPipeline.FieldObjects[] array property provides access to the
    TppField objects. TppField has an IsNull boolean property.

    The notation is DataPipeline.FieldObjects['FieldName'].IsNull

    example:

    if Customer.FieldObjects['Addr1'].IsNull then
    ShowMessage('field value is null');

    --
    Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
  • edited September 2007
    I saw that before, but I was lobbing off FieldObjects for some reason,
    thanks.


This discussion has been closed.