mbf97316 0 Newbie Poster

How can I save the data comes from my flexgrid and save it to my access using vb6?

Private Sub Command2_Click()
opendata

With save
.AddNew

!product = fg.Col = 1:
!quantity = fg.Col = 2:
!price = fg.Col = 3:
!total_price = fg.Col = 4
.Update
End With

End Sub