VclSkin v2.55 For D567 Delphi VclSkin 2.55 VCLSkin is an VCL library that extend Delphi application with skinnable user interface . Unlike other skin component that you must modify source code to build skinnable application, VCLskin can skin existin
SMExport for Delphi&C++Builder is a native VCL component suite for data export from TDataSet or TDBGrid or any other VCL control (TStringGrid, TListView etc) into the Paradox and DBase tables or into a text file (fixed or comma-delimited), HTML, XML
Delphi 向TListView组件中添加项目,实现的功能相信大家还是挺熟悉的,比如Windows中更改成图标查看方式时的内容列表,图标排列的风格,在本例子中,是使用Delphi7.0中的TListView控件来实现,具体还是很方便的: procedure TForm1.SpeedButton1Click(Sender: TObject); var myitem:TListItem; i : integer; begin MyItem:=ListView1.It
Delphi在TListView中显示数据库,ListView控件的简单用法,在日常的编程开发中,这个比较常用 。 self.ListView1.ViewStyle:=vsReport; for i:=0 to Query1.FieldCount-1 do begin TempColumn:=self.ListView1.Columns.Add; TempColumn.Caption:=Query1.Fields[i].FieldName; end; Query