Jump to content

Performance Question


erich.wanker

Recommended Posts

Hello  uniGUI Team,

hello Farshad Mohajeri,

 

nice regards from austria / salzburg

http://goo.gl/maps/HrH36

 

 

  •  

i have a question:

 

Situation:

on mainForm one UniTabSheet with 2 Pages:

Page 1 -> one UniStringGrid  (colCount =8 rowCount = 200) 

Page 2 ->one UniButton1

 

UniButton1Click:

 

procedure TMainForm.UniButton1Click(Sender: TObject);
var x,y:Integer;
begin
for x:= 0 to UniStringGrid1.ColCount do
begin
  for y:= 0 to UniStringGrid1.RowCount do
  begin
    UniStringGrid1.cells[x,y]:=''+inttostr(y)+'-'+inttostr(x);
  end;
end;
end;
 

 

when i test this on my fast mobilePhone (via WLAN to the Win8/IIS8/Testserver ) - it takes minutes since the App respond ... on a pc it keep up in under a second

 

i think, the Mobile waits for something .. ajax synch or something else ... is there a setting or a function befor/after to call or something to do?

 

thanx

Erich

 

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...