เขียน code run id แล้วมันขึ้น error แบบนี้อ่ะค่ะ
ต้องแก้ตรงไหนค่ะ รบกวนด้วยค่ะ
Code (VB.NET)
Public Sub RunID()
Dim da As SqlDataAdapter = Nothing
Dim ds As New DataSet
Dim dt As DataTable = Nothing
Dim sql As String = ""
Dim a As String = "0000000001"
ConnString = "Data Source=xxx\MSSQLSERVER2008;Initial Catalog =BPCS2FMIS;Integrated Security=SSPI;"
Try
Conn.ConnectionString = ConnString
Conn.Open()
sql = "SELECT max(Cust_No)+1 as id FROM CustomerMaster"
Dim Cmd As New SqlCommand(sql, Conn)
Dim Rs As SqlDataReader = Cmd.ExecuteReader
Dim i As Integer
If Rs.Read Then
i = Rs("id")
txtCustNo.Text = i.ToString("0000000000")
End If
Catch ex As Exception
MessageBox.Show(ex.Message, "ข้อมูลผิดพลาด", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
End Try
Conn.Close()
End Sub
Tag : .NET, VB.NET
Date :
2011-07-22 09:35:19
By :
มึนงง
View :
1732
Reply :
3
No. 1
Guest
โทดทีค่ะ dim a ประกาศไว้เฉยๆ ยังไม่ได้ทำอะไรต่อค่ะ ลืมลบออก
Date :
2011-07-22 09:39:35
By :
มึนงง
No. 2
Guest
Code (VB.NET)
If Rs.Read Then
If Rs("id") <> Nothing
i = Rs("id")
txtCustNo.Text = i.ToString("0000000000")
End If
End If