I want to be able to send a Richtextbox to one of my classes byref so that updates to the class rtb will update the actual rtb

Right now I have

VB Code:
  1. Public Class InfLog
  2.  
  3.     Private Buffer1, Buffer2 As String
  4.     Private Interval As Integer = 500
  5.     Private rtxtbox As RichTextBox
  6.  
  7.     Public Sub New(ByVal Buffer1 As String, ByVal Buffer2 As String, ByRef rtb As RichTextBox)
  8.         Me.Buffer1 = Buffer1
  9.         Me.Buffer2 = Buffer2
  10.         Me.rtxtbox = rtb
  11.     End Sub

However when I make changes to rtxtBox nothing happens. Can someone please point me in the right direction?