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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...