Foxtable(狐表)用户栏目专家坐堂 → [求助] 开发版 0826 更新后的问题


  共有10495人关注过本帖平板打印复制链接

主题:[求助] 开发版 0826 更新后的问题

帅哥哟,离线,有人找我吗?
古奇
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:幼狐 帖子:177 积分:1571 威望:0 精华:0 注册:2008/9/1 22:25:00
[求助] 开发版 0826 更新后的问题  发帖心情 Post By:2011/9/3 22:56:00 [只看该作者]

 

没更新前“重排”后是这样的:

 

For Each c As WinForm.Control In e.Form.Controls
    If
Typeof c Is WinForm.TextBox Then '判断控件是否是文本框
       
Dim t As WinForm.TextBox = c '使用特定类型的变量引用控件
        t.Value =
Nothing
    End
If
Next

 

 

更新后“重排”后是这样的:

 

For Each c As WinForm.Control In e.Form.Controls
    If Typeof c Is WinForm.TextBox Then '判断控件是否是文本框
    Dim t As WinForm.TextBox = c '使用特定类型的变量引用控件
    t.Value = Nothing
End If
Next

 

不知其他人有没有这情况。。。


 回到顶部