发布网友 发布时间: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="分数"