Kod: Tümünü seç
Table1.SetKey;
Table1.FieldByName('musterino').Value:=strtoint(Edit27.Text);
if not table1.GotoKey then
Showmessage('bulunamadı')
else
table1.Edit;
teşekkürler.
Kod: Tümünü seç
Table1.SetKey;
Table1.FieldByName('musterino').Value:=strtoint(Edit27.Text);
if not table1.GotoKey then
Showmessage('bulunamadı')
else
table1.Edit;
Kod: Tümünü seç
Close;
SelectSQL.Clear;
SelectSQL.Add('Select * from MUSTERI Where MUSTERI.MUSNO = '''+edit1.text+'''');
Open;
Kod: Tümünü seç
if edit1.Text=''
then Table1.Filter:=''
else
Table1.Filter:='[ADI]='+#39+edit1.text+'*'+#39;
Table1.Filtered:=True;