Difference between revisions of "Tips"

From HashVB
Jump to: navigation, search
m (Reverted edit of 81.168.0.204, changed back to last version by Dee)
Line 1: Line 1:
 +
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
 +
* [[Designing network protocols]] - A few points and common pitfalls about designing a network protocol
 +
* [[Explorer extensions]] - A few useful way to extend the explorer shell
 +
* [[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?
 +
* [[Multithreading|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 locking]] - A Sleep function that doesn't freeze the process
 +
* [[Speed]] - A few tips about speeding up your code.

Revision as of 00:36, 1 January 2006

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
  • Designing network protocols - A few points and common pitfalls about designing a network protocol
  • Explorer extensions - A few useful way to extend the explorer shell
  • 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 locking - A Sleep function that doesn't freeze the process
  • Speed - A few tips about speeding up your code.