Hi,

I have a class that inherits RichTextBox and has more functionality. However, instead of creating typical RichTextBox, I want to create this new extended RTB class and show it on the form and let user to use it.

The following does not show anything to me:
Code:
Dim SRTB As New SecondRTB
SRTB.Width = 320
SRTB.Height = 320
SRTB.Enabled = True
SRTB.Visible = True
SRTB.Show()