Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Null, regardless of whether the function succeeded.

Note: Always call the Get_Status function after calling Repository.

See also

Repository() functionGETTITLE MethodGet_Repos_Entities().

Example

 
Code Block
/* Change the title for the CENTERWINDOW stored procedure */
Declare Function Get_Repos_Entities, Repository, Get_Status
AppID = @APPID<1>  ;* current application
TypeID = "STPROC"  ;* OpenInsight stored procedures
ClassID = ""  ;* Not Applicable
Stored_Proc_Name = 'CENTERWINDOW'
NewTitle = 'A procedure to center a window relative to the desktop.'
 
entid = AppID : '*' : TypeID : '*' : ClassID : '*' : Stored_Proc_Name
result = Repository("SETTITLE", entid, NewTitle)
/*  if successful, title is changed, result is null */
If Get_Status(ErrCode) then
  call msg(@window, 'Error Message returned: ' : ErrCode)
end