LoadOK
    ------------------
    New keyword
     
     
    Use: Used in load handler to tell WimpBasic that
    the application successfully loaded the file.
     
    Syntax is: LoadOK
     
    Example:
    DefProcLoadProcedure(Filename$,FileType%)
    Rem This Procedure only loads text files.
    If FileType%<>Constant:TEXT Then
    LoadFailed
    Else
    LoadOK
    EndIf
    EndProc