How to open DataSet faster in Visual Studio 2008?

When I open a DataSet in Visual Studio 2008 to develop or modify it, it always takes a very long time (more than five minutes) before I can continue to do my work. While I wait, I can not do anything in Visual Studio, and the CPU and memory usage is increasing dramatically.

I want to know, does it shorten the wait time anyway?

Hardware - Desktop Processor: Intel Q6600 Memory: 4 GB HDD: 320 GB 7200 rpm OS: Windows XP 32 bit Service Pack 3

+1
source share
3 answers

Have you tried this?

Go to the Options menu → Windows Form Designer and set the AutoToolboxPopulate parameter to false. It has worked for some of my team members who work with DataSet.

Hope this helps.

+1
source

Assuming you are working with SQL Server datasets, you might want to try using SQL Management Studio. It may be more suited for this kind of work.

If not, what data types are you using, and why are they so big?

0
source

You can try ASYNC to avoid blocking if you want to process something else while waiting. The event will light up to indicate that data has been downloaded.

Hope help

-1
source

All Articles