Kod: Tümünü seç
if edit_adi.text='' then
begin
Showmessage('Adı Alanı Boş Bırakılamaz');
edt_adi.setfocus;
abort;
end;
Kod: Tümünü seç
if edit_adi.text='' then
begin
Showmessage('Adı Alanı Boş Bırakılamaz');
edt_adi.setfocus;
abort;
end;
Kod: Tümünü seç
procedure kayit_kontrol;
hata:=0;
begin
if frm.kf_bayi_kod.Text = '' then // bayi secilmiş mi kontrol et
begin
hata := 3;
frm.StatusBar1.Panels[0].Text := 'Bayi Seçimi Yapmalısınız. Hata : ' +
inttostr(hata);
frm.kf_bayi_adi.SetFocus;
exit;
end;
if frm.kf_en.Value = 0 then // en 0 ise hata ver
begin
hata := 4;
frm.StatusBar1.Panels[0].Text := 'Kapı Eni 0 olamaz . Hata : ' +
inttostr(hata);
frm.kf_en.SetFocus;
exit;
end;
end;
Kod: Tümünü seç
if hata=0 then kayit_işlemeleri