Table of Content
HAL Forum
function Integer FindWindow (
string tstr)
Description:
Finds Window Number of Window with specified Name,returns Number of this Window
Parameters:
tstr Window Name
global 
procedure RestAccToolMasterW()
BEGIN
  Integer nwn;
  record RcVc Dummyr;
  
  nwn = FindWindow("MasterWClass");
  if (nwn!=0) then begin
    SelectWindow(nwn);
  end else begin
    nwn = OpenWindow("MasterWClass",1,0,"","",Dummyr);
  end;
  RETURN;
END;

Related topics:
««