码迷,mamicode.com
首页 > 其他好文 > 详细

判断文本框、组合框为空太麻烦?

时间:2014-08-24 22:22:10      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:.net   技术   

          做机房重构这么长时间了,由纯三层转到加模式加各种其他技术。写了各个层的代码,每次写到要判断文本框或组合框为空的时候总要重复一个一个的判断,虽简单但写的太多了就感觉不怎么爽。不将就是创造的原动力,整点儿技术含量的方法。

      今天就解决了这个问题:判断是否为空就两种情况:1.全部为空2.部分为空

1.全部为空

 Public Function IsAllEmpty(ByVal frm As Form) As Boolean

        Dim control As New Control
        For Each ct1 As Control In frm.Controls '遍历窗体中所有控件
            If ct1.GetType() Is GetType(TextBox) Then  '判断是否为文本框
                If ct1.Text.Length = 0 Then        '是否为空
                    MsgBox("信息不完整,请把信息填写完整")
                    ct1.Focus()
                    Return True
                    Exit Function
                End If
            ElseIf ct1.GetType Is GetType(ComboBox) Then   '判断是否为组合框
                If ct1.Text.Length = 0 Then
                    MsgBox(ct1.Tag.ToString + "不能为空!")
                    ct1.Focus()
                    Return True
                    Exit Function
                End If

            End If
        Next
        Return False

    End Function
2.部分为空
 Public Function SomeIsEmpty(ByVal arrayCt1() As Control) As Boolean
        Dim control As New Control
        For Each ct1 As Control In arrayCt1
            If ct1.GetType() Is GetType(TextBox) Then
                If ct1.Text.Length = 0 Then
                    MsgBox(ct1.Tag.ToString + "不能为空!", vbOK, "提示信息")
                    ct1.Focus()
                    Return True
                    Exit Function
                End If
            ElseIf ct1.GetType() Is GetType(ComboBox) Then
                If ct1.Text.Length = 0 Then
                    MsgBox(ct1.Tag.ToString + "不能为空!", vbOK, "信息提示")
                    ct1.Focus()
                    Return True
                    Exit Function
                End If
            End If
        Next

        Return False
    End Function

      特别提醒:注意每个控件摆放的位置,因为control遍历是从最后放上去的一个控件向前遍历的

判断文本框、组合框为空太麻烦?

标签:.net   技术   

原文地址:http://blog.csdn.net/mqplw/article/details/38799027

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!