文本框可以用代码绑定当前行某列的值吗?
想在同一个文本框,在选定时是绑定“编码”列,离开文本框后绑定“名称”列
动态绑定也是很难实现,一个文本框在三个字段的转换
Dim tbl As Table = Tables("客户__客户")
If tbl.Current IsNot Nothing Then
e.Form.DropDownBox.Value = tbl.Current("名称")
End If
e.Form.DropDownBox.CloseDropDown()
如何求出: e.Form.DropDownBox.Value 的所属表
有相关使用案例吗?
Dim str As String = e.Form.DropDownBox.DropFormName 或 Dim str As String = e.Form.DropFormName
MessageBox.show(str)
Dim st As String = e.Form.DropDownBox.DropTable 或 Dim st As String = e.Form.DropTable
MessageBox.show(st)
还是出错
代码放在什么事件?DropDownBox有没有绑定列?