VB6.0中DATAGRID控件设置各个列的列宽代码

来源:百度知道 编辑:UC知道 时间:2024/05/18 09:06:09
请问我使用DATAGRID控件显示数据库的内容,我想设置各个列的列宽,请问这个设置的代码应该怎么写。

Grid.Columns(index).Width = 数值
index为列数,第一列为0,第二列为1,以此类推。
“数值”为整数,自己测试调整。

'//自动调整Grid各列列宽为最合适的宽度
Public Sub AdjustColWidth(frmCur As Form, gridCur As Object, Optional bNullRow As Boolean = True, Optional dblIncWidth As Double = 0)
'--------------------------------------------------------------------
'功能:
' 自动调整Grid各列列宽为最合适的宽度
'参数:
' [frmCur].........................................当前工作窗体
' [gridCur]........................................当前要调整的Grid
'--------------------------------------------------------------------
Dim i, j As Integer
Dim dblWidth As Double

With gridCur
For i = 0 To .Cols - 1
dblWidth = 0
If .ColWidth(i) <> 0 Then
For j = 0 To .Rows - 1
If frmCur.TextWidth(.TextMatrix(j, i)) > dblWidth Then
dblWidth = frmCur.TextWidth(.TextMatrix(j, i))
End If
Next
.ColWidth(i) = dblWidth + dblIncWidt