Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
410
.export .... S-L-O-W and timing out
posted

I have a 3G proscessor with 512K of Ram running Studio 2k5. When I do a "UltraWebGridDocumentExporter1.Export(UltraWebGrid1);" it times out completely and slows my machine down to a crawl for several minutes after I try to run the code of it. I have a 39 column grid that eventuall will have several thousand rows, however currently Im only trying to print the first two using the following code in a button click event. What am I missing here that is making it sooo s-l-o-w?

Code: 

UltraWebGrid1.Rows.Clear();

UltraWebGrid1.DisplayLayout.RowsRange = 2;

UltraWebGrid1.DataBind();

UltraWebGridDocumentExporter1.Export(UltraWebGrid1);

Parents Reply Children
No Data