Trap rowchanged on DataTable

M

Mike Dole

I have a datagrid with a datatable as datasource, what I want to do is
add a timestamp to a row (in a DateTime field) each time a Quantity
field is filled.

I've tried it with the grdColStyle4.textbox.TextChanged addhandler but
since I can fill this field both by entering it manual or double
clicking it it's not working well...

I want to use something like this but the rowupdated event never gets
trapped if I use the datagrid:

AddHandler MyTempOrderTable.RowChanged, New
DataRowChangeEventHandler(AddressOf
DataTableRow_Changed)

Is there an alternative way to do this?

Regards,

Mike
 
M

Mike Dole

Thanks Miha!

I didn't declare the datatable withevents...
You've made my day / week!

Regards,

Mike
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top