how can i see the modifications in a form fields

  • Thread starter Thread starter thomaz
  • Start date Start date
T

thomaz

Hi...

I would like to know if there is a method that show me the
modification that i made in a form.
For example: I have a field called ESTADO that show
me "BAHIA" in a form and i made a modification in this
field "RIO DE JANEIRO", after i made an update in a Data
Base and finally clean all fields in the form.
If i open the same data in the form, the field ESTADO is
clean, but if i close the form and open it again the field
ESTADO will show the correct information (RIO DE JANEIRO).
How I can show the correct information in the form without
closing the same?
I used the methods:
this.Refresh ();
this.Update ();
but i dont have success...
 
Use same DataTable to bind both disply and edit forms/controls. You may
pass the DataTable to another form to establish this.

-zir
 
Back
Top