Use TDBEdit toenable users to edit a database field. TDBEdit uses the Text
property to represent the contents of the field.
But:
procedure TForm1.Button1Click(Sender: TObject);
begin
Table1.Edit; // Edit modeenabled
DBEdit1.Text:='ThanhMai'; //Assign Text
Table1.Post; // Write todatabase
end;
Table1 can't update!
My Solution:
procedure TForm1.Button1Click(Sender: TObject);
begin
Table1.Edit; // Edit modeenabled
DBEdit1.SetFocus; // Setsfocus to DBEdit1 !!!
DBEdit1.Text:='ThanhMai'; //Assign Text
Table1.Post; // Write todatabase
end;
ขอบ่นเจ๊ ก.ในคดีหวย 30 ล้านหน่อยเหอะ...แม่มโคตรแถ.
-
ที่เจ๊ แกพูดว่า ลุงจรูญ จำหน้า แผนได้ แต่จำคนขาย หวยไม่ได้.คืออยากจะบอกเจ๊
นะครับ ว่าแผนไปบ้านลูงจรูญ ไปพูดคุย เจรจา ก็ต้องจำได้ครับ
ส่วนจำแม่ค้าขายหวยไม่ไ...
6 years ago
No comments:
Post a Comment