下面是我想使用 try catch 和 finally 阻塞的代码但是我不能这样做,我是编程新手,请帮助我在 vb.net 的下面代码中介绍 try catch 和 finally 阻塞,另外帮助为 finally 块编码,我将在其中检查连接是否打开,我连接是打开的,那么它应该在 finally 块中关闭,但在检查之后。如果
条件..
else
'Try
con.Open()
adp = New OleDbDataAdapter("select * from Login ", con)
adp.Fill(dt, "Login")
Dim i As Integer
For i = 0 To dt.Tables(0).Rows.Count - 1
If (cbType.Text = dt.Tables(0).Rows(i).Item(1) And txtUname.Text = dt.Tables(0).Rows(i).Item(2) And txtPass.Text = dt.Tables(0).Rows(i).Item(3)) Then
MDIParent1.Show()
Exit Sub
End If
' Catch ex As Exception
Next
MsgBox("You Are Not A Valid User!!", MsgBoxStyle.Information)
End If