摘要: 本例效果图: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, Grids; type TForm1 = class(TForm) StringGrid1:... 阅读全文
posted @ 2008-03-06 23:05 万一 阅读(10448) 评论(25) 推荐(0)
摘要: 本例效果图: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, Grids; type TForm1 = class(TForm) StringGrid1:... 阅读全文
posted @ 2008-03-06 21:42 万一 阅读(5255) 评论(5) 推荐(0)
摘要: 本例效果图: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, Grids; type TForm1 = class(TForm) StringGrid1:... 阅读全文
posted @ 2008-03-06 21:18 万一 阅读(5149) 评论(0) 推荐(0)
摘要: 本例运行效果图: 一般修改 TStringGrid 的 Options 直接在设计时选一下 True 或 False 就行了; 代码中可以像下面操作: StringGrid1.Options := [goFixedVertLine]; StringGrid1.Options := [goFixedVertLine, goVertLine, goColSizing]; 做完这个例... 阅读全文
posted @ 2008-03-06 11:47 万一 阅读(11267) 评论(28) 推荐(0)