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.
By Tom Wellige