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"
What am I doing wrong?VB Code:
Public Class Form1 Inherits System.Windows.Forms.Form Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim frm As New Form1() frm.Text = "TextChanged" End Sub End Class
-- Ethan --




Reply With Quote