|
Creates or changes a value on specified window. NOTE that you do not have to define a field inside window description to use this funciton. |
|
WindowId |
The targeted window |
WindowStringId |
The name of the window variable that holds the value. |
Value |
The value of the variable |
|
global
procedure IVCashDClassLevelTop()
begin
Integer level,wn;
wn = CurWindow;
level = StringToInt(GetWindowString(wn,"touchscreenwindowlevel"));
ActivateTile(wn,1);
PutWindowString(wn,"touchscreenwindowlevel",1)
PutWindowString(wn,"touchscreenwindowlevelprevious",1)
SetWindowSubset(wn,GetWindowSubset(wn));
return;
end;
««