Originally posted by Colt_777
what is the 'me' part for in vb? i've seen this alot but i don't have a clue what it's about.
Me ?

it references the form or object you are currently in...
if you have Form1 and you write code in Form_load (for example)
you can say : Form1.DoSomthing or Me.DoSomething

Me works much like this pointer in C++ if this can help..