如何通过编程方式对表单表格的第1列text1控件的dblclick事件编写命令程序?
我以编程命令方式在表单中按下指定命令钮后会产生一个Grid表格,所编程序为:
thisform.grid1.recordsource="商品销售"
thisform.grid1.ColumnCount=6
thisform.grid1.column1.controlsource='商品销售.编号'
thisform.grid1.column2.controlsource='商品销售.销售日期'
thisform.grid1.column3.controlsource='商品销售.商品名'
thisform.grid1.column4.controlsource='商品销售.单位'
thisform.grid1.column4.controlsource='商品销售.数量'
thisform.grid1.column6.controlsource='商品销售.销售价'
thisform.grid1.column1.header1.caption='编号'
thisform.grid1.column2.header1.caption='销售日期'
thisform.grid1.column3.header1.caption=''商品名'
thisform.grid1.column4.header1.caption='单位'
thisform.grid1.column5.header1.caption='数量'
thisform.grid1.column6.header1.caption='销售价'
thisform.grid1.column1.width=80
thisform.grid1.column2.width=120
thisform.grid1.column3.width=120
thisform.grid1.column4.width=50
thisform.grid1.column5.width=20
thisform.grid1.column6.width=30
现在需要在该表格的第1列text1控件的dblclick事件编写如下命令程序,并加入到以上程序中:
thisform.container1.text1.Value=商品销售.编号
thisform.container1.text2.Value=商品销售.销售日期
thisform.container1.text3.Value=商品销售.商品名
thisform.container1.text4.Value=商品销售.数量
thisform.container1.text5.Value=商品销售.销售价
敬向电脑专家请教,如何通过编程方式对表单表格的第1列text1控件的dblclick事件编写命令程序?敬请批导,不胜感激!