Jump to content
  • 4.18 - LatestDescription

    4.18 - LatestDescription

    VBScript

     

    This property returns a Windows Error Text (string) of the last read/write access of the persistent variable. The Windows Error Code (numerical) can be found in LatestError.

     

    This property is read only.

     

    As persistent variables are stored into a database there is a possibility of runtime errors. To check for any such runtime errors during read or write access of a persistent variable you can check LatestError for not equal zero.

     

    If you have installed the Persistent Variable extension as recommended the chances for runtime errors are very low. Therefore it shouldn't be necessary to add error handling.

     

    If you have installed the extension lets say into a database server on another machine it is highly recommended to add proper error handling.

     

    Dim Announcement
    Set Announcement   = new PersistentVariable
    Announcement.Name  = "Welcome"
    
    Announcement.Value = "Welcome Default.wav"
     
    if Announcement.LatestError <> 0 then
        ' add your error handling here
        ' error code in LatestError
        ' error descr in LatestDescription
    end if

     

    The above example gives a template for own error handling.

     

     


    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.