本文介绍了如何验证多个文本框,组合框和日期时间选择器infragistics的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个代码来验证下面的所有文本框:
I have a code to validate all textbox below:
For Each ctl As Control In Controls
If TypeOf ctl Is Infragistics.Win.UltraWinEditors.UltraTextEditor AndAlso ctl.Text = "" Then
ctl.Focus()
MsgBox(ctl.Name)
End If
Next
这里我需要获取所有的infragistics控件。
或者建议我验证所有的infragistics控件,如文本框,日期时间选择器,组合。
试着理解我的问题。
我不想要单个控件的解决方案,我的文本框几乎有几个。
什么我试过了:
Here I need to get all infragistics controls.
Or else suggest me to validate all the infragistics controls such as textbox, date time picker, combo.
Try to understand my problem.
I don't want solution for a single control, I am having nearly hundreads of textboxes.
What I have tried:
For Each ctl As Control In Controls
If TypeOf ctl Is Infragistics.Win.UltraWinEditors.UltraTextEditor AndAlso ctl.Text = "" Then
ctl.Focus()
MsgBox(ctl.Name)
End If
Next
这里我需要获得所有的infragistics控件。
Here I need to get all infragistics controls.
推荐答案
这篇关于如何验证多个文本框,组合框和日期时间选择器infragistics的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!