Arsip: Data Harus Numeric

more 15 years ago
ayam_jago
tolong dunk.. gimana cara set edit1.text harus di input dengan angka saja.. dan ada messegebox... urgent deadline besok siang...
:?

more 15 years ago
deepblue
try
inttostr(edit1.text);
except
showmessage('data tidak valid. isi dengan angka');
end;
dicobain dah!

more 15 years ago
n3o_cybertech
var
iValue: integer;
begin
if not TryStrToInt(Edit1.Text,iValue) then
ShowMessage('Harus angka euy!!!');
end;

more 15 years ago
tendafahmi
Coba DI onKeyPress kasih ini
procedure TForm1.Edit1KeyPress(Sender: TObject;
var Key: Char);
var koma : char;
begin
koma := decimalseparator;
if key = koma then
begin
if pos(koma,Edit1.Text)>0 then
begin
key :=#0;
exit;
end;
end;
if not (key in ['0'..'9',#8,koma]) then key:=#0;
end;
[/color:e1841fb673][color=red:e1841fb673][/color:e1841fb673][color=red:e1841fb673]more ...
- Pages:
- 1
reply |
Report Obsolete
AI Forward

🚀 We're thrilled to partner with Alibaba Cloud for "AI Forward - Alibaba Cloud Global Developer Summit 2025" in Jakarta! Join us and explore the future of AI. Register now:
https://int.alibabacloud.com/m/1000400772/
#AlibabaCloud #DeveloperSummit #Jakarta #AIFORWARD
Last Articles
Last Topic
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #4: Obrolan Ringan Seputar IT
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 4 years ago - Tempat Latihan Posting
by LuriDarmawan in OOT more 5 years ago - Archive
- Looping lagi...
by idhiel in Hal umum tentang Pascal Indonesia more 12 years ago - [ask] koneksi ke ODBC user Dsn saat runtime dengan ado
by halimanh in FireBird more 12 years ago - Validasi menggunakan data tanggal
by mas_kofa in Hal umum tentang Pascal Indonesia more 12 years ago
Random Topic
- Link Download ::
by Tbawor in Tip n Trik Pemrograman more 16 years ago - tolong error : project1.exe raised exception class evariant
by divanda in Hal umum tentang Pascal Indonesia more 17 years ago - Tampilan DBGRID
by xproof in Tip n Trik Pemrograman more 16 years ago - Delphi oh Delphi
by Butani in OOT more 18 years ago - Simpan/load gambar tidak berhasil, tolong koreksi coding sya
by hendrahongdexin in MsSQL more 13 years ago - Foto Development team Delphi2010
by abichoy in OOT more 15 years ago - install program yg pake BDE??
by imunk in Multimedia & Graphic Enhancement more 18 years ago - Akses Store procedure mysql 5 dari d7 error dg dbexpress
by sukuguci in MySQL more 18 years ago - ask: .bpl konflik ?
by cyber_hecker in Tip n Trik Pemrograman more 14 years ago - Menggunakan RandG
by agnes in Hal umum tentang Pascal Indonesia more 17 years ago