About 11,500,000 results
Open links in new tab
  1. How can i speed-up my Visual basic application?

    Jan 27, 2014 · There are a few things you can do to improve the speed and readability of your code. Using TextBoxes/whatever controls to hold your data will make it much slower. Use variables instead.

  2. tips for optimizing vb code - Visual Basic

    Mar 17, 2005 · If you want lighting fast code then you really have no choice but to write a dll file in another language and calling it from visual basic. I'm not going to go down that road in this tutorial but attempt to show you a few methods to help speed up visual basic code.

  3. Visual Basic/Optimizing Visual Basic - Wikibooks

    Mar 4, 2024 · This chapter is intended to contain a toolkit of techniques that you can use to speed up certain kinds of program. Each technique will be accompanied by code that demonstrates the improvement.

  4. Performance Tuning - VB Helper

    There are many ways to speed up a Visual Basic program. Unfortunately most produce only a small benefit. Even if a program uses huge collections, converting them into arrays will probably only save you a few percent in run time. On the other hand, rewriting the program's main algorithms can reduce the run time by factors of hundreds.

  5. Optimize string handling in Visual Basic 6.0 - Part I - Aivosto

    String handling in Visual Basic is slow if done the wrong way. You can add significant performance to string operations by following a few easy tricks.

  6. Top Ten Tips To Speed Up Your VBA Code - Eident Training

    Turn off Screen Updating. This will stop the screen flickering and updating while executing or running macros, and that will greatly speed up your code. Sub Stop_ScreenUpdating () Application.ScreenUpdating = False. ‘… (Your Code) Application.ScreenUpdating = True. End …

  7. speed of writing to text file-VBForums

    Oct 26, 2006 · hi, i am using following code to write a string to a textfile with visual basic. The data is stored in arrays which have around 100000 records. It takes me 6 minutes to write all the records to a text file, which is too slow. any suggestions how i can speed things up?

  8. Speed Up Your VB.NET Code -- Redmondmag.com

    Aug 1, 2002 · Your first optimization trick involves sidestepping string concatenation. Consider this slow code:

  9. Why does my Visual Studio have insane type lag? How do I fix this?

    Aug 29, 2022 · I have a short sub 40 second video where I demonstrate that significant type lag exists in my Visual Studio : https://youtu.be/uB-TRZIntWQ. How do I fix it? -------------- SYSTEM INFO ---------------- Microsoft Visual Studio Community 2019 Version 16.11.7 VisualStudio.16.Release/16.11.7+31911.196 Microsoft .NET Framework Version 4.8.04084.

  10. 9 quick tips to improve your VBA macro performance

    Mar 20, 2018 · One of the first things to do when speeding up VBA code is to turn off unnecessary features such as animations, screen updating, automatic calculations and events while your macro is running.

  11. Some results have been removed
Refresh