What is VB.NET Version of this Code:

Posted by beaudetious on Stack Overflow See other posts from Stack Overflow or by beaudetious
Published on 2010-04-21T15:30:09Z Indexed on 2010/04/21 15:33 UTC
Read the original article Hit count: 214

Filed under:
|
|
if (InvokeRequired)
{
  BeginInvoke(new MethodInvoker(delegate()
  {
    textBox1.Text = args.Fax.Port.ToString();
    textBox2.Text = args.Fax.FaxStatus.ToString();
  }));
}

© Stack Overflow or respective owner

Related posts about vb.net

Related posts about c#