Friend WithEvents

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All

I came across this piece of code in C# and was wondering what exactly does it mean to the event

Friend WithEvents txtPath As System.Windows.Forms.TextBo

The Friend Withevents part

Thanks

JJ
 
I came across this piece of code in C# and was wondering what exactly does it mean to the event?

Friend WithEvents txtPath As System.Windows.Forms.TextBox

It means that it is a piece of VB code.
 
JJ,

This is a piece of VB code. Basically, what it does is wire up the
events from the textbox automatically if the appropriate methods are
declared.

Hope this helps.
 
Back
Top