📄 iwunit1.pas
字号:
unit IWUnit1;
{PUBDIST}
interface
uses
IWAppForm, IWApplication, IWTypes, IWDBStdCtrls, DB, DBTables, Classes,
Controls, IWControl, IWGrids, IWDBGrids, IWExtCtrls,DBCtrls, IWDBExtCtrls,
IWCompMemo;
type
TformMain = class(TIWAppForm)
IWDBGrid1: TIWDBGrid;
DataSource1: TDataSource;
Table1: TTable;
Table1NAME: TStringField;
Table1SIZE: TSmallintField;
Table1WEIGHT: TSmallintField;
Table1AREA: TStringField;
Table1BMP: TBlobField;
IWDBNavigator1: TIWDBNavigator;
IWDBImage1: TIWDBImage;
IWMemo1: TIWMemo;
procedure IWDBGrid1RenderCell(ACell: TIWGridCell; const ARow,
AColumn: Integer);
public
end;
implementation
{$R *.dfm}
uses
ServerController;
procedure TformMain.IWDBGrid1RenderCell(ACell: TIWGridCell; const ARow,
AColumn: Integer);
begin
if (acolumn=1) and (arow>0) then
acell.Text:=''
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -