FillNewWindow
Add string line to InfoWindow.
NB: Setting SetSilentMode has no effect for this method.
Pascal
procedure FillNewWindow(s : String);
Python
def FillNewWindow(s)
Example Pascal
var TL : TStringList;
i : Integer;
begin
SetSilentMode(False);
TL := TStringList.Create;
GetShopList(TL);
if TL.Count > 0 then
for i := 0 to TL.Count - 1 do
FillNewWindow(TL.Strings[i]);
end.