Your statement will be something like this:
Code:
"INSERT INTO YourTableName
(char_Account_name, date_Account_Open_Date, int_Account_Balance)
VALUES
('" + TextBox1.Text + "','" + TextBox2.Text + "','" + TextBox3.Text + "')"
Use it like so:
Code:
Dim conn As SQLConnection = new SQLConnection("Yourconnectionstring")
Dim command As SQLCommand = new SQLCommand("INSERT INTO YourTableName
(char_Account_name, date_Account_Open_Date, int_Account_Balance)
VALUES
('" + TextBox1.Text + "','" + TextBox2.Text + "','" + TextBox3.Text + "')", conn)
command.Connection = conn
conn.Open()
command.ExecuteNonQuery()
conn.Close()
All that is done from memory, I didn't verify it, but it will be close. You also have to verify that all your text in your text boxes are the right type and format.