Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
Dim txt As String = e.Form.Controls("DropBox1").Text
txt = "'" & txt & "'"
msgbox(txt)
e.Form.Controls("DropBox2").DropFormName = txt 为什么代码不可执行?
'e.Form.Controls("DropBox2").DropFormName = "申请单位" 代码可执行
.NET Framework 版本:4.0.30319.1
Foxtable 版本:2022.8.18.1
错误所在事件:窗口,列名,TreeView1,NodeMouseClick
详细错误信息:
Specified argument was out of the range of valid values.
Parameter name: index
If Forms ("查询表").opened Then
If e.Node.Level = 1 Then
e.Form.DropDownBox.Value = e.Node.Text
MessageBox.Show(1)
Forms ("查询表").Controls("DropBox1").text = e.Node.Nodes(0).Text
MessageBox.Show(2)
e.Form.DropDownBox.CloseDropdown()
End If
End If
我想把当前节点的父节点的数据引入到Forms ("查询表").Controls("DropBox1"),代码怎么写?