此主题相关图片如下:窗口按钮实现选择指定列.jpg
求助,下面代码修改后,实现操作
1. 录入 第三列
2. 点击按钮:
实现效果: 假如当前表,存在 第三列,光标定位到 第三列
For Each dt As DataTable In DataTables
Dim s As String = e.Form.Controls("ComboBox1").Value
If dt.name = "s" Then
currenttable.Col = s
End If
Next
[此贴子已经被作者于2024/8/29 18:04:01编辑过]
蓝大师,下面代码,报错,求助
With Tables("'" & currenttable.name & "'")
For Each dt As DataTable In DataTables
Dim s As String = e.Form.Controls("ComboBox1").Value
If dt.name = "s" Then
.Select(.RowSel, .Cols("s").Index)
End If
Next
End With
当前表不就一个?为什么要遍历所有表?另外这个select功能是table才有的,请认真看帮助
蓝大师,还报错,哪里出问题
With Tables("'" & currenttable.name & "'")
Dim s As WinForm.ComboBox = e.Form.Controls("ComboBox1")
.Select(.RowSel,.Cols("'" & s.text & "'").Index)
End With