|
|
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
|
|
|
กระทู้ #3484 [Delphi] (จาก IP: 125.24.45.31)
อยากรู้โค้ดเพิ่มข้อมูล2ตารางในปุ่มเดียว
*ตัวอย่างโค้ดเพิ่มข้อมูลแบบตารางเดียว *ตาราง1=data *ตาราง2=data1 begin with data do begin try data.Insert;
FieldByName('s1_name').AsString := txtname.Text; FieldByName('s1_number').AsString := txtnumber.Text; FieldByName('s1_salesprice').AsString := txtsalesprice.Text; FieldByName('s1_sumprice').AsString := txtsumprice.Text; FieldByName('s1_total').AsString := txttotal.Text; FieldByName('s1_day').AsString := datetostr(datetimepicker1.Date); FieldByName('s1_time').AsString := TimetoStr(now);
data.Post; data.Refresh;
Messagedlg(' เพิ่มสินค้า ',mtConfirmation,[mbOk],0); //cmdClearClick(Sender); //txtname.SetFocus; //cmdClear.Enabled :=False;
Except cancel; //messagedlg('เพิ่มไม่ได้',mtError,[mbOk],0) end; end;
end;
|
จากคุณ
:
take / takelovegasby@gmail.com [2014-01-09 16:45:51]
|
|
ความคิดเห็น #28982 (จาก IP: 115.87.217.230)
เดานะ
begin with data do begin try
data.Insert;
FieldByName('s1_name').AsString := txtname.Text; FieldByName('s1_number').AsString := txtnumber.Text; FieldByName('s1_salesprice').AsString := txtsalesprice.Text; FieldByName('s1_sumprice').AsString := txtsumprice.Text; FieldByName('s1_total').AsString := txttotal.Text; FieldByName('s1_day').AsString := datetostr(datetimepicker1.Date); FieldByName('s1_time').AsString := TimetoStr(now);
data.Post; data.Refresh;
Messagedlg(' เพิ่มสินค้า ',mtConfirmation,[mbOk],0); //cmdClearClick(Sender); //txtname.SetFocus; //cmdClear.Enabled :=False;
Except cancel; //messagedlg('เพิ่มไม่ได้',mtError,[mbOk],0) end; end;
////////////////////// with data1 do begin try data1.Insert;
FieldByName('s1_name').AsString := txtname.Text; FieldByName('s1_number').AsString := txtnumber.Text; FieldByName('s1_salesprice').AsString := txtsalesprice.Text; FieldByName('s1_sumprice').AsString := txtsumprice.Text; FieldByName('s1_total').AsString := txttotal.Text; FieldByName('s1_day').AsString := datetostr(datetimepicker1.Date); FieldByName('s1_time').AsString := TimetoStr(now);
data1.Post; data1.Refresh;
Messagedlg(' เพิ่มสินค้า ',mtConfirmation,[mbOk],0); //cmdClearClick(Sender); //txtname.SetFocus; //cmdClear.Enabled :=False;
Except cancel; //messagedlg('เพิ่มไม่ได้',mtError,[mbOk],0) end; end;
end; |
จากคุณ
:
maddog [2014-01-09 17:59:58]
|
|
ความคิดเห็น #28983 (จาก IP: 171.6.233.28)
ขอบคุณมากครับ แล้วพี่ครับ แล้วผมอยากถาม -โค้ดลบข้อมูลตารางที่1 ทั้งหมดอะครับ <br>-แล้วการรายงานโดยเช็ควันที่ อะครับ<br><br>ช้วยบอกที่นะครับ พอดีเป็นโปรเจคจบของผมอะครับ<br>ผมหาในเน็ตแล้วไม่เจอเลย |
จากคุณ
:
take / takelovegasby@gmail.com [2014-01-10 12:51:59]
|
|
ความคิดเห็น #28984 (จาก IP: 58.11.77.93)
data.Delete; |
จากคุณ
:
maddog [2014-01-10 15:10:18]
|
|
|
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
|
|
|
|
|