Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
If Forms ("生产管理").opened Then
Dim t1 As Table = Tables("生产管理_Table01")
Dim c As Col = t1.Cols(t1.ColSel)
Forms ("申请人编辑").Controls("TextBox5").text = t1.Current(t1.ColSel) 把这句改成t1.Current(t1.ColSel) = Forms ("申请人编辑").Controls("TextBox5").text为什么不能运行?
End If
TextBox控件的ValueChanged事件
.NET Framework 版本:4.0.30319.1
Foxtable 版本:2022.8.18.1
错误所在事件:窗口,申请人编辑,TextBox5,ValueChanged
详细错误信息:
Public member 'text' on type 'String' not found.
If Forms ("生产管理").opened Then
MessageBox.Show(1) 出现1
Dim t1 As Table = Tables("生产管理_Table01")
MessageBox.Show(2) 出现2
Dim c As Col = t1.Cols(t1.ColSel)
MessageBox.Show(3) 出现3
t1.Current(t1.ColSel) = Forms ("申请人编辑").Controls("TextBox5").text
MessageBox.Show(4) 出现4 但数据未被导入到TABLE
End If