Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共3 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:代码出错(已解决)

1楼
yyzlxc 发表于:2024/9/30 10:45:00
控件TextBox21的TextChanged事件代码

Dim tx As WinForm.TextBox = e.Sender
Dim nf As Integer = e.Form.Controls("TextBox21").text
If tx.Text.Length = 4 And nf > 1623 Then 
    Dim fdr As DataRow = DataTables("年号").Find("年份 = '" & nf & "'")
    If fdr Is Nothing And nf < 1624 Then
        e.Form.Controls("TextBox22").text = Nothing
    Else
        e.Form.Controls("TextBox22").text = fdr("年号")
    End If
Else
    e.Form.Controls("TextBox22").text = Nothing 
End If

当TextBox21为空时出错,请问如何修改代码?谢谢!!

图片点击可在新窗口打开查看此主题相关图片如下:屏幕截图 2024-09-30 101527.png
图片点击可在新窗口打开查看

[此贴子已经被作者于2024/9/30 11:29:21编辑过]
2楼
有点蓝 发表于:2024/9/30 11:04:00

Dim nf As Integer = val(e.Sender.text)
e.Form.Controls("TextBox22").text = Nothing
If nf > 1623 Then 
    Dim fdr As DataRow = DataTables("年号").Find("年份 = '" & nf & "'")
    If fdr Isnot Nothing Then
        e.Form.Controls("TextBox22").text = fdr("年号")
    End If
End If
3楼
yyzlxc 发表于:2024/9/30 11:28:00
问题解决,谢谢有点蓝老师的指教。
共3 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .07422 s, 2 queries.