How to open DataSet in Visual Studio 2008 faster?

廉价感情. 提交于 2019-12-24 07:06:13

问题


When I open DataSet in Visual Studio 2008 to design or modify it, it always take a very long time (more than five minutes) before I can continue to do my job. While I'm waiting I can't do anything on Visual Studio, moreover CPU and memory usage is growth dramatically.

I want to know, Is it has anyway to reduce this waiting time?

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


回答1:


Have you tried this?

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

I hope it helps.




回答2:


Assuming you're working with SQL Server datasets, maybe you should try using SQL Management Studio. It may be more tailored for that sort of work.

If not, what kind of datasets are you using, and why are they so large?




回答3:


You could try ASYNC to avoid blocking if you want to process something else while you are waiting. An event would fire to indicate data has been loaded.

Hope that help,



来源:https://stackoverflow.com/questions/2395163/how-to-open-dataset-in-visual-studio-2008-faster

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!