Dear all,
i have alreay created a small program which is used to store input data in textbox in database.
the program is consist of two buttons and one text box .
Private Sub add_Click() ''' when i click on this button i can add any thing in textbox
Data1.Recordset.AddNew
End Sub
Private Sub save_Click()''' saving the input data in database file
Data1.Recordset.Update
End Sub
my question is , i need to change the textbox to be multiline textbox , i did it already but after i type 10 lines and click on save button i get error.
so can any one help me on this issue as i'm a new in vb6
thanks