|
本帖最后由 鱼儿游游 于 2023-8-4 15:47 编辑
用以下的方法,可实现楼主想要的效果。- Option Compare Database
- Option Explicit
- Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, _
- ByVal wMsg As Long, _
- ByVal wParam As Long, _
- lParam As Any) As Long
- Private Const TV_FIRST = &H1100
- Private Const TVM_SETITEMHEIGHT = TV_FIRST + 27
- '/**
- ' * 函数功能:设置树型列表控件节点行(Node)高度
- ' *
- ' * 调用参数:
- ' * oTreeView ......... TreeView 控件
- ' * lngHeight .......... 设置树型列表控件节点(Node)的高度(建议值在:15 - 80 之间)。
- ' *
- ' * 返 回 值:长整型。
- ' *
- ' * 调用示例: Call TreeView_SetItemHeight( Me.TreeView.hwnd, 30 )
- ' */
- Function TreeView_SetItemHeight(ByVal oTreeView As Object, ByRef lngHeight As Long) As Long
-
- TreeView_SetItemHeight = SendMessage(oTreeView.hwnd, TVM_SETITEMHEIGHT, lngHeight, ByVal 0&)
- End Function
复制代码
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
|