Re: Copy Edit1.Text to the field in DBGrid reside in another Form.


Posted by Jean Claude Servaye on March 23, 2001

In Reply to: Copy Edit1.Text to the field in DBGrid reside in another Form. posted by nazri badar on March 23, 2001:

First, add Form1 to the uses clause of Form2 (in the implementation part)

Then in the OnCellClick of the DBGrid write someting like this:


Table1.Edit;
Table1.FieldByName(Column.FieldName).AsString := Form1.Edit1.Text;




Related Articles and Replies: