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

这句用VB如何写

2012-09-16 
这句用VB怎么写?C# codeHtmlElement btnElement htmlDoc.All[btnClose] if (btnElement ! null) {bt

这句用VB怎么写?

C# code
HtmlElement btnElement = htmlDoc.All["btnClose"]; if (btnElement != null) {     btnElement.click += new HtmlElementEventHandler(HtmlBtnClose_Click); } 


求助,给出用vb.net写的格式。

[解决办法]
Dim btnElement As HtmlElement = htmlDoc.All("btnClose")
If btnElement IsNot Nothing Then
btnElement.click += New HtmlElementEventHandler(HtmlBtnClose_Click)
End If

热点排行