暫無描述
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 311B

1234567891011
  1. Option Strict Off
  2. Imports System.Data.SqlClient
  3. Module 全域變數
  4. Public conn As New SqlConnection
  5. Public da As New SqlDataAdapter
  6. Public cmd As New SqlCommand
  7. Public dr As SqlDataReader
  8. Public ConString As String
  9. Public SQL1 As String
  10. Public 登入判斷 As Boolean
  11. End Module