首页 养生问答 疾病百科 养生资讯 女性养生 男性养生

请教Grid的fixed-column-count属性问题

发布网友 发布时间:2022-04-21 18:59

我来回答

1个回答

热心网友 时间:2022-04-06 14:37

建立一个新表单form1,创建一个表格grid1,在数据环境添加一个表a.dbf,目的要求:运行表单时,表格显示表里4列的内容,并且表格列之间的宽度可设定。新建一个方法为setgrid,然后在表单的事件setgrid里写入程序:
thisform.grid1.columncount=4 &&表格列为4列
thisform.grid1.recordsource="a" &&指定数据源
thisform.grid1.column1.width=thisform.grid1.width/4 &&指定表格第一列的宽度为表格总宽度的1/4
thisform.grid1.column2.width=thisform.grid1.width/5
thisform.grid1.column3.width=thisform.grid1.width/5
thisform.grid1.column4.width=thisform.grid1.width/10
thisform.grid1.column1.header1.caption="编号" &&指定列的名称
thisform.grid1.column1.header1.caption="名称"
thisform.grid1.column1.header1.caption="年级"
thisform.grid1.column1.header1.caption="分数"

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com