Arsip: Teks Auto SIZE di TMEMO
more 18 years ago
MrLee
Teman Delphier;
mau minta tolong nih;
Adakah Komponen TMEMO yg dapat membuat Ukuran teks yg auto size;
maksudnya jika teksnya kepanjangan melebihi ukuran 1 memo;
maka size teks nya akan di perkecil; atau juga di perbesar;
atau ada yg punya script nya;
Please!
Tank's
more 18 years ago
reev
Seingat saya ada fungsi-funsgi API untuk menghitung lebar dan tinggi teks. Coba aja WinAPI. Kalau gak salah yang berhubungan dengan GDI.
more 18 years ago
_lmz
procedure TForm1.Button1Click(Sender: TObject);
var h : HDC; sz : SIZE; old_font : HGDIOBJ;
begin
h := GetDC(Memo1.Handle);
old_font := SelectObject(h, memo1.Font.Handle);
GetTextExtentPoint32(h, PAnsiChar(Memo1.Lines[0]), Length(Memo1.Lines[0]), sz);
SelectObject(h, old_font);
ReleaseDC(Memo1.Handle, h);
memo1.ClientWidth := sz.cx + 10;
end;
Matikan wordwrapnya pada memo karena isi lines[0] adalah hasil setelah dilakukan wrapping. Untuk mendapat baris pertama yang murni mungkin dapat dilihat dari Lines.Text yang diambil sampai newline pertama... Silakan disempurnakan sendiri...
Satu yang saya kurang pahami:
The GetTextExtentPoint32 function uses the currently selected font to compute the dimensions of the string. The width and height, in logical units, are computed without considering any clipping.Apa itu logical units? Programnya sih kelihatannya jalan meskipun saya tidak mengerti :) Untuk tinggi satu baris text (rasanya, karena sudah malam) dapat dilihat dari fontnya menggunakan fungsi GetTextMetrics.
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 5 years ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 5 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 6 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
Random Topic
- Cannot Find Implementation of Method TLMChange ?
by hermawan-dki in Tip n Trik Pemrograman more 18 years ago - Mencari inspirasi
by mmmot in MySQL more 17 years ago - Menghitung Umur berapa Tahun Bulan Hari
by iccang in Lain-lain more 14 years ago - index name di ADO
by saysansay in OOT more 20 years ago - koneksi delphi dengan sql server 2000
by tita in Hal umum tentang Pascal Indonesia more 17 years ago - Update field menggunakan validasi jam
by lukersgn in Tutorial & Community Project more 13 years ago - Left join di MySQL 5 dan SQLyog
by onsir in MySQL more 18 years ago - was: Komponen SMS. lagi o-on lagi
by LuriDarmawan in OOT more 17 years ago - Penjualan CD Orisinil Delphi Wilayah Bandung
by y901i in Hal umum tentang Pascal Indonesia more 17 years ago - Triger mysql ke host berbeda
by sinaga in MySQL more 15 years ago