首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VB Dotnet >

if(CheckBox1 != null && CheckBox2 != null ) 转换为VB.net的代码应该是什么?该如何解决

2012-02-01 
if(CheckBox1 ! null && CheckBox2 ! null ) 转换为VB.net的代码应该是什么?if(CheckBox1!null&&CheckB

if(CheckBox1 != null && CheckBox2 != null ) 转换为VB.net的代码应该是什么?
if(CheckBox1   !=   null   &&   CheckBox2   !=   null   )   转换为VB.net的代码应该是什么?


[解决办法]
if not checkbox1 is nothing and checkbox2 is nothing then
^
end if
[解决办法]
If( ( CheckBox1 IsNot Nothing) And (CheckBox2 IsNot Nothing) ) Then

热点排行