473,662 Members | 2,524 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Poor performance IDE. Urgent suggestion needed.

Dear friends,
I recently decided to move vb.net 2005 from vb6. my projects has average of
200 forms and 20 modules. I mostly write enterprise solution about
production automation like applications.
In VB6 it takes 15 to 20 second to open a project and almost less than 2
second to see the form after I click to project explorer. Compiling to EXE
file takes rather long time, about 45 seconds to 1 minute.

But in VB.net, to open a project takes more than 2 minutes (2 minutes and
about 40 seconds), after clicking the form in project explorer of vb.net it
takes average of 30 seconds. and these are the forms that containt tons of
controls. they are simple data entry forms. I design applicaiton with simple
forms to get better performance. I even don't know how long it will take ro
run the project.

And this projects are not divideable. So here's my question:

How do you guys write vb.net applications ? Or Am I the only one who writes
a block of code and runs the application to test it, lets say, in every 2 or
5 minutes ? My computer is not slow one, fast harddisk and 1gb memory, etc.
even photoshop or video editing applications works very well.

Is there a trick ? Because with this speed, I can never convert my project
to .net. I get old and die infront of my computer. Please give me some
information about how you work. I'm desperate.
Oct 25 '06 #1
5 1463
Hello Aykut,

I am currently working on a project with more than 250 forms, each one
quite heavy (tons of controls), several DLLs, some thousands
class....Also including an asp.net project (this one also slows down a
lot the compilation). I must say that after moving to VS2005 from
VS2003 the productivity has slown down a lot due to the new IDE which
seems to carry out some huge (but useful) work in background.

Probably you just need a faster machine. I have 2 computer. One at home
and one at office. The one at home is a pentium 4 1900 with 1+ GB ram
and 500GB HD and I am *no more* able to work at reasonable speed at
home (before I was). Every operation takes ages.

At my office I have a more powerful machine and I can work, say, fine.
Probably you just need a good dual core 3.6Ghz with some very fast HD
(11500+ ) and couple Gigs ram to see things in a different perpective
:) ....

Anyway I think they really have got to do something with the IDE. Has
really slowed down too much. I am hopeful in the new release... :)
since this development environment has already got "unreachabl e" (as to
good features offered) and there is really no alternative :))

Tommaso

Aykut Canturk ha scritto:
Dear friends,
I recently decided to move vb.net 2005 from vb6. my projects has average of
200 forms and 20 modules. I mostly write enterprise solution about
production automation like applications.
In VB6 it takes 15 to 20 second to open a project and almost less than 2
second to see the form after I click to project explorer. Compiling to EXE
file takes rather long time, about 45 seconds to 1 minute.

But in VB.net, to open a project takes more than 2 minutes (2 minutes and
about 40 seconds), after clicking the form in project explorer of vb.net it
takes average of 30 seconds. and these are the forms that containt tons of
controls. they are simple data entry forms. I design applicaiton with simple
forms to get better performance. I even don't know how long it will take ro
run the project.

And this projects are not divideable. So here's my question:

How do you guys write vb.net applications ? Or Am I the only one who writes
a block of code and runs the application to test it, lets say, in every 2 or
5 minutes ? My computer is not slow one, fast harddisk and 1gb memory, etc.
even photoshop or video editing applications works very well.

Is there a trick ? Because with this speed, I can never convert my project
to .net. I get old and die infront of my computer. Please give me some
information about how you work. I'm desperate.
Oct 25 '06 #2
You might want to use VS 2003 first until the SP is available for 2005. It
is much faster than 2005. The slowness of 2005 is well-known (and
inexplicable - trivial operations can take minutes sometimes). The 2005 SP
is currently in beta.
--
David Anton
www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: C#/VB to C++ converter
Instant Python: VB to Python converter
"Aykut Canturk" wrote:
Dear friends,
I recently decided to move vb.net 2005 from vb6. my projects has average of
200 forms and 20 modules. I mostly write enterprise solution about
production automation like applications.
In VB6 it takes 15 to 20 second to open a project and almost less than 2
second to see the form after I click to project explorer. Compiling to EXE
file takes rather long time, about 45 seconds to 1 minute.

But in VB.net, to open a project takes more than 2 minutes (2 minutes and
about 40 seconds), after clicking the form in project explorer of vb.net it
takes average of 30 seconds. and these are the forms that containt tons of
controls. they are simple data entry forms. I design applicaiton with simple
forms to get better performance. I even don't know how long it will take ro
run the project.

And this projects are not divideable. So here's my question:

How do you guys write vb.net applications ? Or Am I the only one who writes
a block of code and runs the application to test it, lets say, in every 2 or
5 minutes ? My computer is not slow one, fast harddisk and 1gb memory, etc.
even photoshop or video editing applications works very well.

Is there a trick ? Because with this speed, I can never convert my project
to .net. I get old and die infront of my computer. Please give me some
information about how you work. I'm desperate.
Oct 25 '06 #3
Aykut Canturk wrote:
I recently decided to move vb.net 2005 from vb6. my projects has
average of 200 forms and 20 modules.
Is your VB2005 project still "mid-upgrade" and full of hundreds of warnings
and compilation errors? I've found that the IDE performance degrades
substantially under these circumstances.

My approach to upgrading has been to exclude all of the source files from
the project, and then re-include them one at a time, starting with those
that have no (or few) dependencies on other classes. Then you can fix up
each class individually without worrying about the hundreds of warnings
coming in from elsewhere. This has made the IDE run sunstantially more
quickly while performing this type of operation.

If that's not the case for you then I'm afraid I can't help, all I can say
is that I've had some fairly substantial solutions open and have never
experienced the performance problems that you are reporting.

--

(O)enone
Oct 25 '06 #4
Aykut Canturk wrote:
Is there a trick ? Because with this speed, I can never convert my project
to .net. I get old and die infront of my computer. Please give me some
information about how you work. I'm desperate.
In addition to the other responses, I believe there is a hotfix
available to speed the IDE up for VB. From what I have read, it has
helped some people, though not all.

It's worth a shot. Search the newsgroup and you should find a
reference to it.

Oct 25 '06 #5
Chris Dunaway wrote:
Aykut Canturk wrote:
>Is there a trick ? Because with this speed, I can never convert my
project to .net. I get old and die infront of my computer. Please
give me some information about how you work. I'm desperate.

In addition to the other responses, I believe there is a hotfix
available to speed the IDE up for VB. From what I have read, it has
helped some people, though not all.

It's worth a shot. Search the newsgroup and you should find a
reference to it.
You might be referring to the one mentioned in this article:
http://blogs.msdn.com/jledgard/archi...28/729070.aspx
which is
http://support.microsoft.com/Default.aspx?kbid=920805

Andrew
Oct 26 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
1732
by: Steve_CA | last post by:
Hello all, I've been recruited to assist in diagnosing and fixing a performance problem on an application we have running on SQL Server 7. The application itself is third party software, so we can't get at the source code. It's a Client Management system, where consultants all over the country track their client meetings, results, action plans, etc. , and has apparently been problematic for a long time now. I came into this...
37
4692
by: Kevin C | last post by:
Quick Question: StringBuilder is obviously more efficient dealing with string concatenations than the old '+=' method... however, in dealing with relatively large string concatenations (ie, 20-30k), what are the performance differences (if any with something as trivial as this) between initializing a new instance of StringBuilder with a specified capacity vs. initializing a new instance without... (the final length is not fixed) ie,
6
2318
by: teedilo | last post by:
We have an application with a SQL Server 2000 back end that is fairly database intensive -- lots of fairly frequent queries, inserts, updates -- the gamut. The application does not make use of performance hogs like cursors, but I know there are lots of ways the application could be made more efficient database-wise. The server code is running VB6 of all things, using COM+ database interfaces. There are some clustered and non-clustered...
6
3529
by: florian | last post by:
Hello, we are running DB2 UDB EEE Version 7.2 Fixpack 12 on a two machine Windows 2000 Advanced Server Cluster in a dss environment. Some dynamic sql statements for etl processes and even some for online user queries switched overnight from some minutes runtime to a few hours or "never come back" statements. We didn't change a single database or instance parameter. Even the
13
4124
by: Bern McCarty | last post by:
I have run an experiment to try to learn some things about floating point performance in managed C++. I am using Visual Studio 2003. I was hoping to get a feel for whether or not it would make sense to punch out from managed code to native code (I was using IJW) in order to do some amount of floating point work and, if so, what that certain amount of floating point work was approximately. To attempt to do this I made a program that...
20
2106
by: John Mark Howell | last post by:
I had a customer call about some C# code they had put together that was handling some large arrays. The performance was rather poor. The C# code runs in about 22 seconds and the equivalent C++.Net code runs in 0.3 seconds. Can someone help me understand why the C# code performance is so poor? I rewote the C# code to use a single dimenional array and the time went down to about 3 seconds, but that's still no explaination as to why the...
2
1561
by: BTabios | last post by:
Hello Everyone, I have a very complex performance issue with our production database. Here's the scenario. We have a production webserver server and a development web server. Both are running SQL Server 2000. I encounted various performance issues with the production server with a particular query. It would take approximately 22 seconds to return 100 rows, thats about 0.22 seconds per row. Note: I ran the query in single user mode. So...
4
2681
by: Jim Devenish | last post by:
I have converted an Access back-end to SQL Server back-end but am having some problems. The Access to Access application has been running well for some years. I have successfully copied all the data to SQL Server and linked the tables to the front end .mdb (I am not using .adp). Some queries were performing poorly so I have converted these to Views and linked to them. Everything works well with good response but when about 8-10...
4
2393
by: joa2212 | last post by:
Hello everybody, I'm posting this message because I'm quiet frustrated. We just bought a software from a small software vendor. In the beginning he hosted our application on a small server at his office. I think it was a Fujitsu-Siemens x86 running debian Linux. The performance of the DSL-Line was very poor, so we decided to buy an own machine to host the application ourselves.
0
8432
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
1
8546
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8633
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7367
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6186
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5654
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4180
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4347
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1752
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.