以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  我设置的记录窗口的行高怎么不启作用?  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=30819)

--  作者:wuxianzuoji41
--  发布时间:2013/4/4 12:13:00
--  我设置的记录窗口的行高怎么不启作用?

Dim rgd As WinForm.RecordGrid = e.Form.Controls("RecordGrid1")
rgd.Table = Tables("窗口意向管理_tblYixiangguanli") \'指定绑定表
rgd.Columns = "opp_name|course|totalMoney|returnDate|create_date|creator|developer|track_user|successRate|modifier|modify_date|remark|status"
With CurrentTable
    .cols("remark").RecordRowHeight=5 
    .cols("opp_name").RecordRowHeight=1
End With

rgd.Build() \'重新生成记录窗口

[此贴子已经被作者于2013-4-4 12:14:11编辑过]

--  作者:有点甜
--  发布时间:2013/4/6 9:21:00
--  

Dim rgd As WinForm.RecordGrid = e.Form.Controls("RecordGrid1")
rgd.Table = Tables("窗口意向管理_tblYixiangguanli") \'指定绑定表
rgd.Columns = "opp_name|course|totalMoney|returnDate|create_date|creator|developer|track_user|successRate|modifier|modify_date|remark|status"
With Tables("窗口意向管理_tblYixiangguanli") 
    .cols("remark").RecordRowHeight=5 
    .cols("opp_name").RecordRowHeight=1
End With

rgd.Build() \'重新生成记录窗口