Creating
SS
Initialising
' C#
public partial class Form1 : System.Windows.Forms.Form
{
private void Form1_Load(object sender,
EventArgs e)
{
this.Text = "Form Title";
}
}
' VB.Net Equivalent
Public Class Form1 Inherits System.Windows.Forms.Form
Private Sub Form1_Load(sender As Object,
e As EventArgs) Handles MyBase.Load
Me.Text = "Form Title"
End Sub
End Class
© 2023 Better Solutions Limited. All Rights Reserved. © 2023 Better Solutions Limited TopPrevNext