Difference between revisions of "Tips"

From HashVB
Jump to: navigation, search
m (Link to Multithreading page)
m (Expanded link title)
Line 5: Line 5:
 
* [[Why DoEvents Are Evil|DoEvents]] - Some of the problems with DoEvents and how to work around them
 
* [[Why DoEvents Are Evil|DoEvents]] - Some of the problems with DoEvents and how to work around them
 
* [http://www.earlsoft.co.uk/tips/end.php End] - Ever wondered why your application doesn't shutdown cleanly?
 
* [http://www.earlsoft.co.uk/tips/end.php End] - Ever wondered why your application doesn't shutdown cleanly?
* [[Multithreading]] - A rough guide.
+
* [[Multithreading|Multi threading in VB]] - A rough guide.
 
* [[Null]] - What is it and how do I use it?
 
* [[Null]] - What is it and how do I use it?
 
* [[Option Explicit]] - Why you should use Option Explicit
 
* [[Option Explicit]] - Why you should use Option Explicit
 
* [[Sleep Without the Freezing]] - A Sleep function that doesn't freeze the process
 
* [[Sleep Without the Freezing]] - A Sleep function that doesn't freeze the process
 
* [[Speed]] - A few tips about speeding up your code.
 
* [[Speed]] - A few tips about speeding up your code.

Revision as of 11:48, 9 November 2005

Here are a selection of VB tips that will make you progamming life easier.

  • As New - When and more importantly, when NOT to use As New.
  • Debugging - Having a problem? Here are some basic tips for tracking it down
  • DoEvents - Some of the problems with DoEvents and how to work around them
  • End - Ever wondered why your application doesn't shutdown cleanly?
  • Multi threading in VB - A rough guide.
  • Null - What is it and how do I use it?
  • Option Explicit - Why you should use Option Explicit
  • Sleep Without the Freezing - A Sleep function that doesn't freeze the process
  • Speed - A few tips about speeding up your code.