Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I apply the below C# solution to stop the richtextbox from flickering to VB?

private void StopRepaint()
{
    // Stop redrawing:
    SendMessage(this.Handle, WM_SETREDRAW, 0, IntPtr.Zero);
    // Stop sending of events:
    eventMask = SendMessage(this.Handle, EM_GETEVENTMASK, 0, IntPtr.Zero);
}

private void StartRepaint()
{
    // turn on events
    SendMessage(this.Handle, EM_SETEVENTMASK, 0, eventMask);
    // turn on redrawing
    SendMessage(this.Handle, WM_SETREDRAW, 1, IntPtr.Zero);
    // this forces a repaint, which for some reason is necessary in some cases.
    this.Invalidate();
}

Thanks.

share|improve this question
1  
Check out the zillion of online and desktop C# to VB converters on the web. – U1199880 Jan 22 at 21:03
1  
There are various tools that can do that. This is the one Google lists first: developerfusion.com/tools/convert/csharp-to-vb – zmbq Jan 22 at 21:05
2  
this post: stackoverflow.com/questions/487661/… seems to answer your question in both C# and VB – David Hope Jan 22 at 21:09

closed as not a real question by asawyer, talonmies, Soner Gönül, hohner, dasblinkenlight Jan 22 at 21:41

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Here is what your code converts to

Private Sub StopRepaint()
    ' Stop redrawing:
    SendMessage(Me.Handle, WM_SETREDRAW, 0, IntPtr.Zero)
    ' Stop sending of events:
    eventMask = SendMessage(Me.Handle, EM_GETEVENTMASK, 0, IntPtr.Zero)
End Sub

Private Sub StartRepaint()
    ' turn on events
    SendMessage(Me.Handle, EM_SETEVENTMASK, 0, eventMask)
    ' turn on redrawing
    SendMessage(Me.Handle, WM_SETREDRAW, 1, IntPtr.Zero)
    ' this forces a repaint, which for some reason is necessary in some cases.
    Me.Invalidate()
End Sub
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.