Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共4 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:自动行高

1楼
home8225 发表于:2017/8/3 15:39:00
我用的这个代码

If e.Col.Name = "备注" Then
    e.
Table.AutoSizeRow(e.Row.Index)
End if

效果应该不是这样吧?输多输少都会变成这么高,是因为表格里备注内容最多的就有这么高,不是根据本行的内容来定的?自动后的行高不理想诶。。
图片点击可在新窗口打开查看此主题相关图片如下:qq截图20170803153649.png
图片点击可在新窗口打开查看

[此贴子已经被作者于2017/8/3 15:40:04编辑过]
2楼
有点甜 发表于:2017/8/3 16:55:00

 你想根据哪一列的内容调整行高?或者你改成,afterEdit

 

Dim t As Table = e.Table
Dim  cname As String = e.Col.name
Dim lc As Integer = t.cols(cname).index+1
Dim br As Integer = e.Row.index+t.HeaderRows
t.grid.AutoSizeRows(0, lc, br, lc, 0, 0)

3楼
zhimin 发表于:2017/10/27 1:24:00
如果直接用甜老师这个代码的使用效果是:在同一行中,改动任何一列的数据,行高就会根据该列的行高自动调整。
如果改为:
If e.Col.Name="列名" Then
    Dim t As Table = e.Table
    Dim  cname As String = e.Col.name
    Dim lc As Integer = t.cols(cname).index+1
    Dim br As Integer = e.Row.index+t.HeaderRows
    t.grid.AutoSizeRows(0, lc, br, lc, 0, 0)
End If

则改动该列的数据,该行会自动调整行高,改动其他列行高无变化。
实在是好用。
4楼
puma 发表于:2024/2/26 12:35:00
根据甜老师代码修改,设置指定行高

    Dim t As Table = Tables("表A")
    Dim lc As Integer = t.cols("备注").index+1
    Dim br As Integer = CurrentTable.Current.index+t.HeaderRows
    t.grid.AutoSizeRows(0, lc, br, lc, 0, 0)
共4 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .02734 s, 2 queries.