Ok I need some quick help with a form problem. I'm trying to change the Title of the form using code. Whenever I load the form though, it still comes up as "Form1"
VB Code:
  1. Public Class Form1
  2.     Inherits System.Windows.Forms.Form
  3.    
  4.     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  5.         Dim frm As New Form1()
  6.         frm.Text = "TextChanged"
  7.     End Sub
  8. End Class
What am I doing wrong?

-- Ethan --