Detect changes in data on win forms in vb.net?
Hi All i have some forms in my application. They are all inherited from a single form. i have different controls on the form. I have also used typed datasets on my inherited forms. But i dont want to use dataset.Getchanges() for this purpose. Tell me any other way how to detect the changes on the form.
Regards Asad
If possible plz mail me at this address: [email protected]
Re: Detect changes in data on win forms in vb.net?
u can use hasChanges to detectchanges in the dataset
Code:
If Ds.HasChanges() Then ' Changed rows detected
Else
' No changes
End If
Re: Detect changes in data on win forms in vb.net?
AoA
Thank you Anis
but i want to use dataset for this purpose. I want to check the changes at control level.
Asad
Lahore, Pakistan