Arsip: wordwrap pada dbgrid??

more 17 years ago
imunk
tanya lagi neh mas....
(wah lagi semangat nanya neh..:))
kalo kita pake label, kita bisa set tampilannya kalo datanya banyak bisa turun kebawah (jadi mirip memo deh) pake wordwrap kalo gak salah,
nah kalo itu diterapkan di dbgrid bisa gak ya mas...??
makasih sebelumnya....
maju terus.

more 17 years ago
gaussac
Coba pake ini, mudah2an bisa ngebantu
procedure TForm1.DBGrid1DrawDataCell(Sender: TObject; const Rect: TRect;
Field: TField; State: TGridDrawState);
var
P: array of char; {array size is number of characters needed}
BS: tBlobStream; {from the memo field}
S: String;
begin
if Field is TMemoField then
begin
with (Sender as TDBGrid).Canvas do
begin
BS:= tBlobStream.Create(TBlobField(Field), bmRead);
FillChar(P, SizeOf(P),#0); {terminate the null string}
BS.Read(P, 50); {read 50 chars from memo into blobStream}
BS.Free;
S:= StrPas(P);
while Pos(#13, S) > 0 do
S[Pos(#13, S)] := ' ';
while Pos(#10, S) > 0 do
S[Pos(#10, S)] := ' ';
FillRect(Rect); {clear the cell}
TextOut(Rect.Left, Rect.Top, S); {fill cell with memo data}
end;
end;
end;

more 17 years ago
imunk
@gaussac
aku dah coba coding yg dari mas gaussac, tapi ko gak jalan ya...
gimana neh mas gaussac, bisa kasih coding gak?
@all
ada yg bisa bantu aku gak? tolong dong....
maju terus.

more 17 years ago
deLogic
coba ke sini deh: http://www.delphi-id.org/dpr/index.php?name=PNphpBB2&file=viewtopic&t=812&highlight=
more ...
- Pages:
- 1
reply |
Report Obsolete
Last Articles
Last Topic
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
by LuriDarmawan in Tutorial & Community Project more 2 years ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 2 years ago - PascalTalk #4: Obrolan Ringan Seputar IT
by LuriDarmawan in Tutorial & Community Project more 3 years ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 3 years ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 3 years ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 3 years ago - Tempat Latihan Posting
by LuriDarmawan in OOT more 3 years ago - Archive
- Looping lagi...
by idhiel in Hal umum tentang Pascal Indonesia more 11 years ago - [ask] koneksi ke ODBC user Dsn saat runtime dengan ado
by halimanh in FireBird more 11 years ago - Validasi menggunakan data tanggal
by mas_kofa in Hal umum tentang Pascal Indonesia more 11 years ago
Random Topic
- [Ask] Akses MySQL pake ADO
by ryan in MySQL more 16 years ago - Mohon pendapat rekan2 ttg .NET...
by gustaman in Delphi.NET more 16 years ago - Solusi Ya Nih ..?
by umarbakri in Network, Files, I/O & System more 16 years ago - License Delphi
by -BeT- in Komersial more 14 years ago - Bagaimana cara memasukkan combobox ke dalam stringgrid ?
by holmes in Tip n Trik Pemrograman more 17 years ago - popup pindah2...
by nurez in Tip n Trik Pemrograman more 16 years ago - detach database menggunakan query analizer
by esti_g in Bedah Kasus more 16 years ago - Soal TAdoTable... share dikit....
by juan81 in Hal umum tentang Pascal Indonesia more 16 years ago - JOIN 3 TABEL
by maskaes in Lain-lain more 12 years ago - program multi user (duplicate primary key)
by ricky_seldjatem in Tip n Trik Pemrograman more 15 years ago