erich.wanker Posted March 21, 2013 Posted March 21, 2013 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 Quote
Administrators Farshad Mohajeri Posted March 21, 2013 Administrators Posted March 21, 2013 Updating cells in runtime is a slow process. We already working on this. 0000934: UniStringGrid: Optimized method to update large amount of Cells 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.