Announcement

Collapse
No announcement yet.

FunctionParameters: DATE

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • FunctionParameters: DATE

    Hi
    FunctionParameters: Date
    How do you input a date with Function Parameters:
    sam

  • #2
    sam.burn,

    You could put it in as a string value (FunctionParameter.STRING) . The easiest way to construct a date in your code would be to create a string as follows:

    myBarDate = month(0)+"/"+day(0)+"/"+year(0);

    This is convenient since you could then compare them directly.

    Hope this helps.

    Comment


    • #3
      thanks Steve
      sam

      Comment

      Working...
      X