تقييم الموضوع :
  • 0 أصوات - بمعدل 0
  • 1
  • 2
  • 3
  • 4
  • 5
كيف اتخلص من ' Is Not Valid Integer Value
#2
تفضل.... أرجو ان يكون المطلوب:
 
procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
 if not  (Key in ['A'..'Z', 'a'..'z']) then
 begin
    ShowMessage('Plz ..Use Only Letters');
      Key := #0;
  end;
  end;
////////////////////////////////////////////////////////////////
procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
 if not  (Key in ['0'..'9']) then
 begin
    ShowMessage('Plz ..Use Only Numbers');
     Key := #0;
  end;
  end;
////////////////////////////////////////////////////////////////
procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
 if not  (Key in ['A'..'Z', 'a'..'z',' ','0'..'9']) then
 begin
    ShowMessage('Plz ..Use Only Letters and Numbers');
    Key := #0;
  end;
end;
" اللهم أحسن خاتمتنا وأخرجنا من الدنيا علي خير"
أعضاء أعجبوا بهذه المشاركة : farfes , muhmath2002 , Polia


الردود في هذا الموضوع
كيف اتخلص من ' Is Not Valid Integer Value - بواسطة Polia - 24-01-2020, 03:24 PM
RE: كيف اتخلص من ' Is Not Valid Integer Value - بواسطة TeRcO - 24-01-2020, 04:05 PM

التنقل السريع :


يقوم بقرائة الموضوع: بالاضافة الى ( 1 ) ضيف كريم