Jump to content
  • 4.10 - Created

    4.10 - Created

    VBScript   1.3.0

     

    This property contains the date/time when the persistent varibale was stored first time. 

     

    Dim Announcement
    Set Announcement  = new PersistentVariable
    Announcement.Name = "Welcome"
    
    If Not IsNull(Announcement.Created) Then
       PBXScript.OutputTrace "Created:         " & FormatDateTime(Announcement.Created)
       PBXScript.OutputTrace "CreatedByName:   " & Announcement.CreatedByName
       PBXScript.OutputTrace "CreatedByNumber: " & Announcement.CreatedByNumber
    End If

     

    This propery returns a datetime value.

     

    This property allows read access only.

     

    If a variable wasn't set before you access this property, a NULL value will be returned. This is also the case for variables which were originally set with a persistent variable version less than 1.3.0.

     

    You should check for NULL (as in above code snippet) to prevent problems in your code, as not every function is capable of dealing with NULL properly.

     

     


    Tom Wellige
     Share


     Share




×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and have taken note of our Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.