28-04-16, 10:31 PM
(09-02-16, 02:24 AM)Adrees كتب : السلام عليكم
اولا اكتب هذه الدالة
PHP كود :
Public Shared Function CheckInternetConnection() As Boolean
Try
Return My.Computer.Network.Ping("www.google.com")
Return True
Catch
Return False
End Try
End Function
ثانيا في الحدث Form Load ضع الكود التالي
PHP كود :
If CheckInternetConnection() = True Then
MessageBox.Show("Your Computer is Connected to internet", "Connected", MessageBoxButtons.OK, MessageBoxIcon.Information)
Else
MessageBox.Show("Your Computer is not Connected to internet", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
Application.Exit()
End Ifان شاء الله يفيدك هذا الكود.
