Thanks.
I have a few TDBGrid tips on my Delphi Tip of the Day webpage at
http://members.truepath.com/delphi
I also have a daily email list to let you knoe the days tip title,
description, and a link to it if you are interested.
--
--
Lewis Howell
lewis...@yahoo.com
Lou's Delphi Tip of the Day:
http://members.truepath.com/delphi
Lou's personal webpage:
http://members.truepath.com/LewisHowell
Lawrence Kohn wrote in message <7fjnf8$3m...@forums.borland.com>...
with SMDBGrid.Columns.Add do
begin
FieldName := 'Name';
Width := 150;
Title.Caption := 'Name of newsgroup*'
Title.Alignment := taCenter;
PickList.Add('borland.public.delphi.vcl.components.using');
PickList.Add('borland.public.delphi.vcl.components.writing');
PickList.Add('borland.public.delphi.graphics');
PickList.Add('borland.public.delphi.database.sqlservers');
PickList.Add('borland.public.delphi.thirdparty-tools');
Color := TColor($C0DCC0); //clMoneyGreen
end;
--
With best regards, Mike Shkolnik.
FIDO: 2:463/106.14
E-Mail: mshk...@rs-ukraine.kiev.ua
mi...@woccu.freenet.kiev.ua
WEB: http://www.geocities.com/SiliconValley/Grid/3989
Lawrence Kohn пишет в сообщении <7fjnf8$3m...@forums.borland.com> ...
Try Grid1.Columns.Add .