![]() |
How can i code for adding and deleting data in datagrid
1 Attachment(s)
Any body can help me in making coding for adding and deleting data in datagrid with example attached
|
Re: How can i code for adding and deleting data in datagrid
how to add and delete data in datagrid?
|
Re: How can i code for adding and deleting data in datagrid
Code:
Dim conn As ADODB.Connection |
Re: How can i code for adding and deleting data in datagrid
Dim conn As ADODB.Connection
Dim Rs As ADODB.Recordset Private Sub cmdAdd_Click() If Len(Trim(Text1.Text)) > 0 Then With Rs .AddNew DataGrid1.DataField = "Field1" DataGrid1.DataField = "Field1" .Update DataGrid1.Refresh End With DataGrid1.Field(1).DataField Text1.Text DataGrid1.Field(2).DataField Text2.Text DataGrid1.Field(3).DataField Text3.Text DataGrid1.Field(4).DataField Text4.Text DataGrid1.Field(5).DataField Text5.Text DataGrid1.Text = "" DataGrid1.Text = "" DataGrid1.Text = "" DataGrid1.Text = "" DataGrid1.Text = "" Else MsgBox "Please Insert Date" End If End Sub Private Sub Form_Load() Set conn = New ADODB.Connection conn.Provider = "Microsoft.Jet.OLEDB.4.0" conn.ConnectionString = "Data Source=" & App.Path & "\db1.mdb" conn.Open Set Rs = New ADODB.Recordset Rs.Open "SELECT * from Table1", conn, adOpenStatic, adLockOptimistic Do While Not Rs.EOF = True Text1.DataField = "Field1" Text2.DataField = "Field2" Text3.DataField = "Field3" Text4.DataField = "Field4" Text5.DataField = "Field5" Rs.MoveNext Loop End Sub WHERE I AM Wrong Can anybody help me? |
Re: How can i code for adding and deleting data in datagrid
If you post the same thing 10 more times it would not help. Your code is just perfect.
Your first error was you attached the complete code without any hint on where you are stuck. Would you download somebodies code debug it and reply where he is wrong. You made the same mistake couple of more times. Your code is just correct but it does not work like you want and that is normal. |
Re: How can i code for adding and deleting data in datagrid
Code:
Private Sub cmdadd_Click()for deleting the selected row use this Code:
Private Sub Command1_Click() |
Re: How can i code for adding and deleting data in datagrid
Sorry to state that it is not an copied code from some bodies project. It is my own project. First I tried the codes to say data in MS Access it saved. After than i changed the codes to save the data in List boxes. But I was not satisfied because in some forms I have to Add/delete the names of customer and which should be displayed in Forms.
But thanks for helping. |
Re: How can i code for adding and deleting data in datagrid
Study in Books and then try to make the project.
THANKS AGAIN! |
Re: How can i code for adding and deleting data in datagrid
Thanks problem solved
|
| All times are GMT +5.5. The time now is 11:47. |