Difference between revisions of "Tips"

From HashVB
Jump to: navigation, search
(Removed Special keys in VB since it's mainly a link, and it hit me after.)
m (Sorted)
Line 1: Line 1:
 
Here are a selection of VB tips that will make you progamming life easier.
 
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
 
* [[Debugging]] - Having a problem? Here are some basic tips for tracking it down
 
* [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?
Line 7: Line 8:
 
* [[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.
* [[As New]] - When and more importantly, when NOT to use As New.
 

Revision as of 00:02, 7 October 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
  • End - Ever wondered why your application doesn't shutdown cleanly?
  • 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.