Prob with janus controls

amalatsliit

New member
Joined
Jan 13, 2006
Messages
1
Programming Experience
Beginner
Dear friends...i'm developing windows base c# application by using Janus controls.

In my application i'm use XSD to populate data to various controls.

e.g: In my XSD there r 3 tables.


1.tblSales : populate sales person combo
2.tblcustomer : populate customer combo
3.tblItems : Populate items grid


when i load particular windows form it takes 1 to 2 minute to load.i think this is problem with data binding to controls.

therefore does any one know how to reduse this loading time :mad:
 
1 - 2 minutes??? Thats quite a long time to wait for a form to load, and if i was a user i wouldn't be looking forward to pushing that button. As for the databinding... I saw an article once wich described in detail why 'DataBinding Is EVIL, use ADO instead' Well i don't know about evil, but personally i dont use it. If you are loading a significant amount of adat into yuor dataset and you are sure that you have reduced the amount of information retrieved by correctly using a where clause in your SQL. I would consider making your app multithreaded.
 
Back
Top