Ingen beskrivning
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

網段.vb 1.4KB

1234567891011121314151617181920212223
  1. Public Class 網段
  2. Private Sub 外網_bt_Click(sender As Object, e As EventArgs) Handles 外網_bt.Click
  3. If SQL_連線狀態模組1.ConnectTest1("180.177.181.162,5264") = True Then
  4. '---主伺服器導通-------------------------------------------
  5. ConString = "Data Source=180.177.181.162,5264;Initial Catalog=BIFENG-ERP-SYS;Persist Security Info=True;User ID=b70340;Password=0911274990;Max pool size = 200;Connection Timeout=0"
  6. Me.Close()
  7. Else
  8. MsgBox("系統伺服器無法導通,請聯繫 [工巧明智能企業有限公司] 技術人員協助處理!!") : 不通 = True : Me.Close()
  9. End If
  10. End Sub
  11. Private Sub 內網_bt_Click(sender As Object, e As EventArgs) Handles 內網_bt.Click
  12. If SQL_連線狀態模組1.ConnectTest1("192.168.12.127") = True Then
  13. '---主伺服器導通-------------------------------------------
  14. ConString = "Data Source=192.168.12.127;Initial Catalog=BIFENG-ERP-SYS;Persist Security Info=True;User ID=b70340;Password=0911274990;Max pool size = 200;Connection Timeout=0"
  15. Me.Close()
  16. Else
  17. MsgBox("電腦不再內網網段,請重新開啟系統選擇!!") : 不通 = True : Me.Close()
  18. End If
  19. End Sub
  20. Private Sub 網段_Load(sender As Object, e As EventArgs) Handles MyBase.Load
  21. 不通 = False
  22. End Sub
  23. End Class