CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2009
    Posts
    177

    Checkbox AddHandler

    Hi, I have the code of Vb.Net:

    Code:
         AddHandler _checkbox.CheckedChanged, AddressOf Master_CheckedChanged
    Can anyone advice how to use addhandler in c#?

  2. #2
    Join Date
    Apr 2002
    Location
    Egypt
    Posts
    2,210

    Re: Checkbox AddHandler

    this is the code converted to c#
    Code:
    _checkbox.CheckedChanged+=Master_CheckedChanged
    Hesham A. Amin
    My blog , Articles


    <a rel=https://twitter.com/HeshamAmin" border="0" /> @HeshamAmin

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured