SSDBGrid - Data not updating
I have a grid table ("grdNotes") and a button ("cmdUpdate") on the form.
grdNotes AllowUpdate is set to true.
So after I updated some data in the grid I hit the cmdUpdate button.
On the Cell the that I updated I looked at the code and it was still the same datea as before and not the updated data that I entered in. This is how I am grabbing the text. What am I doing wrong.
VB Code:
grdNotes.Columns(x).CellText(grdNotes.AddItemBookmark(i))
Re: SSDBGrid - Data not updating
Can you show little more code, your sample is telling nothing yet.
What you have written on BeforeColUpdate or AfterColUpdate area?
Re: SSDBGrid - Data not updating
I just got it working. I forgot 1 simple thing. grdNotes.Update
Re: SSDBGrid - Data not updating
Ok :D
I use that SSDBGrid too