以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 历遍控件类型与select case (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=189692) |
-- 作者:lur320 -- 发布时间:2023/12/18 15:11:00 -- 历遍控件类型与select case For Each c As WinForm.Control In e.Form.Controls Select Case TypeOf c Case WinForm.TextBox Dim t As WinForm.TextBox = c \'使用特定类型的变量引用控件 End Select t.Value = Nothing ‘’‘ If TypeOf c Is WinForm.TextBox Then \'判断控件是否是文本框 ’‘’‘ Dim t As WinForm.TextBox = c \'使用特定类型的变量引用控件 ’‘’‘ t.Value = Nothing ’‘’‘ End If Next 控件比较多,有没有用select case 来编写历遍控件和判断控件类型的方法?
|
-- 作者:有点蓝 -- 发布时间:2023/12/18 15:16:00 -- 只能使用if判断 |