Cukup merepotkan bila kita harus menekan tombol shift maupun caps lock bila ingin menuliskan huruf besar di awal kalimat pada tedit, untuk mengatasinya coba aja kode berikut :)
procedure TForm1.Edit1Change(Sender: TObject); var OldStart : Integer; begin With Edit1 do if Text <> '' then begin OnChange := NIL; OldStart := SelStart; Text := UpperCase(Copy(Text,1,1))+LowerCase(Copy(Text,2,Length(Text))); SelStart := OldStart; OnChange := Edit1Change; end; end;
selamat mencoba
tapi jika ingin yang setelah spasi jg jadi huruf besar coba aja di
http://nickqin.wordpress.com/
Random Articles
- Membaca Ukuran "file-teks"
- Membuat EditBox yang RataKanan
- Folder SIZE
- Membuat DBNavigator dgn TAction
- Bikin ListBox Bisa NgeDrag And Drop Seperti WinAmp
- FreePascal and JSON
- Bikin Balooon tooltip
- Delphi + Java := .Net ?
- PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
- Dynamic ODBC untuk MySQL dan Ms Access
Last Articles
Recent 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 5 years ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 5 years ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 5 years ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 5 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 13 years ago - [ask] koneksi ke ODBC user Dsn saat runtime dengan ado
by halimanh in FireBird more 13 years ago - Validasi menggunakan data tanggal
by mas_kofa in Hal umum tentang Pascal Indonesia more 13 years ago