 |
|
|
 |
 |
|

อยากให้ข้อมูลบนtextbox บันทึกลงใน Access โดยการกดปุ่ม Save ค่ะ
รบกวนด้วยนะค่ะ
|
 |
 |
 |
 |
Date :
2009-12-07 18:24:40 |
By :
kik |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|

นู่แก้ไขแล้วเป็นแบบเนียอะค่ะ
แต่ไม่มี errorนะค่ะ พอกดปุ่ม save ไปดูใน accessไม่มีข้อมูลเลยค่ะ
ีรบกวนช่วยแนะนำด้วยนะค่ะ
|
 |
 |
 |
 |
Date :
2009-12-07 21:59:01 |
By :
kik |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เอ่อ ลืมรันอีกคำสั่งหรือเปล่าครับ เวลาใช้ Olecommand, SQLCommand พวกนี้แล้ว หลังจากกำหนดค่าต่างๆ เสร็จแล้ว connection, query script ... ต้องรันพวกนี้ด้วยครับ
ExecuteNonQuery() <- สำหรับ query ประเภท Insert, Update, Delete
ExecuteScalar() <- สำหรับ query ประเภทมี function math ประกอบเช่น Sum(), Count(), AVG()
ExecuteReader() <- สำหรับ query ประเภท Select ทั่วไป
ลองหาวิธีใช้เพิ่มเติมนะครับ รับรองที่มือได้มี ฝีแน่  
|
 |
 |
 |
 |
Date :
2009-12-07 23:19:25 |
By :
salapao_codeman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|

แก้ไขแล้วค่ะ
ไม่ได้อยู่ดีค่ะ
พอกด Save มันไม่ข้อมูลลงไป
ช่วยหน่อยนะค่ะ
|
 |
 |
 |
 |
Date :
2009-12-09 08:47:20 |
By :
kik |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
แง่ววว แก้ตามนี้น่ะครับ
dim command as new oledbcommand(comm,objConn)
|
 |
 |
 |
 |
Date :
2009-12-09 09:27:02 |
By :
otomokung |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไม่ได้อยู่ดีค่ะ
รบกวนช่วยดูให้หน่อยนะค่ะ
แค่ลง accessได้
โปรแกรมก็เสร็จแล้วค่ะ



|
 |
 |
 |
 |
Date :
2009-12-10 13:06:00 |
By :
kik |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
sql command syntax error ครับพี่น้อง
comm &= "'" & TextBox11.Text & "')"
comm &= "'" & TextBox12.Text & "')"
ทำไมมันมีวงเล็บมากมายนัก เปลี่ยนเป็น , ดีกว่าไหม แบบ TextBox1 กับ TextBox2 น่ะ ไว้มีวงเล็บแค่อันสุดท้ายพอ
ปล copy โค้ดมา paste ก็ได้มั้ง เล่น capture มาดูก็ยาก จะแก้ให้ก็ยาก
|
 |
 |
 |
 |
Date :
2009-12-10 16:55:55 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ตั้งแต่ บรรทัดที่มี textbox3-textboc10 ให้ใส่ comm &= "'" & TextBox11.Text & ","
ส่วนบรรทัดที่มี textbox11 ให้ใส่ comm &= "'" & TextBox11.Text & "')"
|
 |
 |
 |
 |
Date :
2009-12-10 19:48:36 |
By :
otomokung |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (VB.NET)
Imports System.Data
Imports System.Data.OleDb
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
End Sub
Private Sub TextBox11_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)
End Sub
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
End Sub
Private Sub TextBox4_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox4.TextChanged
End Sub
Private Sub TextBox3_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox3.TextChanged
If TextBox3.Text = "1" Then TextBox4.Text = "2:00"
If TextBox3.Text = "1" Then
Else : TextBox4.Text = "Error"
End If
If TextBox3.Text = "2" Then TextBox4.Text = "3:00"
End Sub
Private Sub TextBox6_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox6.TextChanged
If Val(TextBox4.Text) >= Val(TextBox6.Text) Then
TextBox9.Text = "Pass"
Else
TextBox9.Text = "Fail"
End If
If TextBox6.Text = "Over Day" Then TextBox9.Text = "Over"
End Sub
Private Sub TextBox9_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox9.TextChanged
End Sub
Private Sub TextBox12_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox12.TextChanged
End Sub
Private Sub TextBox7_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox7.TextChanged
Dim a As Single
a = Val(TextBox7.Text) - Val(TextBox5.Text)
If TextBox12.Text = TextBox13.Text Then
TextBox6.Text = a
Else
TextBox6.Text = "Over Day"
End If
End Sub
Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
End Sub
Private Sub Button14_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button14.Click
setupScreen()
End Sub
Sub setupScreen()
TextBox1.Text = ""
TextBox2.Text = ""
TextBox3.Text = ""
TextBox4.Text = ""
TextBox5.Text = ""
TextBox6.Text = ""
TextBox7.Text = ""
TextBox8.Text = ""
TextBox9.Text = ""
TextBox10.Text = ""
TextBox11.Text = ""
TextBox12.Text = ""
TextBox13.Text = ""
End Sub
Private Sub Button16_Click() Handles Button16.Click
End
End Sub
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
End Sub
Private Sub TextBox10_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox10.TextChanged
End Sub
Private Sub TextBox5_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox5.TextChanged
End Sub
Private Sub Button15_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button15.Click
Dim Conn As System.Data.OleDb.OleDbConnection
Dim objCmd As System.Data.OleDb.OleDbCommand
Dim strConnString As String
strConnString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\Database1.accdb"
Conn = New System.Data.OleDb.OleDbConnection(strConnString)
Conn.Open()
Dim comm As String = "INSERT INTO Table2 (Log ID,Branch,Severity,No Hour,Open Date,Open Time,Time Receive,Close Date,Close Time,Time Usage,Over SLA,Technical,Description) "
comm &= " VALUES ('" & TextBox1.Text & "',"
comm &= "'" & TextBox2.Text & "',"
comm &= "'" & TextBox3.Text & "',"
comm &= "'" & TextBox4.Text & "',"
comm &= "'" & TextBox12.Text & "',"
comm &= "'" & TextBox5.Text & "',"
comm &= "'" & TextBox8.Text & "',"
comm &= "'" & TextBox13.Text & "',"
comm &= "'" & TextBox7.Text & "',"
comm &= "'" & TextBox6.Text & "',"
comm &= "'" & TextBox9.Text & "',"
comm &= "'" & TextBox10.Text & "',"
comm &= "'" & TextBox11.Text & "')"
Dim command As New OleDbCommand(comm, Conn)
Try
command.ExecuteNonQuery()
MessageBox.Show("Connect OK")
Conn.Close()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
objCmd = Nothing
Conn = Nothing
End Sub
End Class
ไม่ได้ค่ะ
เป็นแบบเดิม error เหมือนเดิมค่ะ
รบกวนช่วยดูให้หน่อยค่ะ
ขอบคุณค่ะ
|
 |
 |
 |
 |
Date :
2009-12-10 20:03:34 |
By :
kik |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (VB.NET)
Private Sub Button15_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button15.Click
Dim Connection As System.Data.OleDb.OleDbConnection
Dim Command As System.Data.OleDb.OleDbCommand
Dim ConnectionString As String
ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\Database1.accdb"
Connection = New System.Data.OleDb.OleDbConnection(ConnectionString)
Dim CommandString As String
CommandString = "Insert Into [Table2] " &_
"([Log ID], [Branch], [Severity], [No Hour], [Open Date], [Open Time], [Time Receive], " &_
"[Close Date], [Close Time], [Time Usage], [Over SLA], [Technical], [Description]) " &_
"Values " &_
"(@LogID, @Branch, @Severity, @NoHour, @OpenDate, @OpenTime, @TimeReceive, " &_
"@CloseDate, @CloseTime, @TimeUsage, @OverSLA, @Technical, @Description)"
Command = New System.Data.OleDb.OleDbCommand(CommandString, Connection)
Command.Parameters.AddWithValue("@LogID", TextBox1.Text)
Command.Parameters.AddWithValue("@Branch", TextBox2.Text)
Command.Parameters.AddWithValue("@Severity", TextBox3.Text)
Command.Parameters.AddWithValue("@NoHour", TextBox4.Text)
Command.Parameters.AddWithValue("@OpenDate", TextBox12.Text)
Command.Parameters.AddWithValue("@OpenTime", TextBox5.Text)
Command.Parameters.AddWithValue("@TimeReceive", TextBox8.Text)
Command.Parameters.AddWithValue("@CloseDate", TextBox13.Text)
Command.Parameters.AddWithValue("@CloseTime", TextBox7.Text)
Command.Parameters.AddWithValue("@TimeUsage", TextBox6.Text)
Command.Parameters.AddWithValue("@OverSLA", TextBox9.Text)
Command.Parameters.AddWithValue("@Technical", TextBox10.Text)
Command.Parameters.AddWithValue("@Description", TextBox11.Text)
Try
Connection.Open()
Command.ExecuteNonQuery()
Connection.Close()
MessageBox.Show("Success!")
Catch ex As Exception
MessageBox.Show("Error " & ex.Message)
End Try
End Sub
|
 |
 |
 |
 |
Date :
2009-12-10 20:37:20 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Imports System.Data
Imports System.Data.OleDb
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
End Sub
Private Sub TextBox11_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)
End Sub
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
End Sub
Private Sub TextBox4_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox4.TextChanged
End Sub
Private Sub TextBox3_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox3.TextChanged
If TextBox3.Text = "1" Then TextBox4.Text = "2:00"
If TextBox3.Text = "1" Then
Else : TextBox4.Text = "Error"
End If
If TextBox3.Text = "2" Then TextBox4.Text = "3:00"
End Sub
Private Sub TextBox6_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox6.TextChanged
If Val(TextBox4.Text) >= Val(TextBox6.Text) Then
TextBox9.Text = "Pass"
Else
TextBox9.Text = "Fail"
End If
If TextBox6.Text = "Over Day" Then TextBox9.Text = "Over"
End Sub
Private Sub TextBox9_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox9.TextChanged
End Sub
Private Sub TextBox12_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox12.TextChanged
End Sub
Private Sub TextBox7_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox7.TextChanged
Dim a As Single
a = Val(TextBox7.Text) - Val(TextBox5.Text)
If TextBox12.Text = TextBox13.Text Then
TextBox6.Text = a
Else
TextBox6.Text = "Over Day"
End If
End Sub
Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
End Sub
Private Sub Button14_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button14.Click
setupScreen()
End Sub
Sub setupScreen()
TextBox1.Text = ""
TextBox2.Text = ""
TextBox3.Text = ""
TextBox4.Text = ""
TextBox5.Text = ""
TextBox6.Text = ""
TextBox7.Text = ""
TextBox8.Text = ""
TextBox9.Text = ""
TextBox10.Text = ""
TextBox11.Text = ""
TextBox12.Text = ""
TextBox13.Text = ""
End Sub
Private Sub Button16_Click() Handles Button16.Click
End
End Sub
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
End Sub
Private Sub TextBox10_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox10.TextChanged
End Sub
Private Sub TextBox5_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox5.TextChanged
End Sub
Private Sub Button15_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button15.Click
Dim Connection As System.Data.OleDb.OleDbConnection
Dim Command As System.Data.OleDb.OleDbCommand
Dim ConnectionString As String
ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\Database1.accdb"
Connection = New System.Data.OleDb.OleDbConnection(ConnectionString)
Dim CommandString As String
CommandString = "Insert Into [Table2] " &_
"([Log ID], [Branch], [Severity], [No Hour], [Open Date], [Open Time], [Time Receive], " &_
"[Close Date], [Close Time], [Time Usage], [Over SLA], [Technical], [Description]) " &_
"Values " &_
"(@LogID, @Branch, @Severity, @NoHour, @OpenDate, @OpenTime, @TimeReceive, " &_
"@CloseDate, @CloseTime, @TimeUsage, @OverSLA, @Technical, @Description)"
Command = New System.Data.OleDb.OleDbCommand(CommandString, Connection)
Command.Parameters.AddWithValue("@LogID", TextBox1.Text)
Command.Parameters.AddWithValue("@Branch", TextBox2.Text)
Command.Parameters.AddWithValue("@Severity", TextBox3.Text)
Command.Parameters.AddWithValue("@NoHour", TextBox4.Text)
Command.Parameters.AddWithValue("@OpenDate", TextBox12.Text)
Command.Parameters.AddWithValue("@OpenTime", TextBox5.Text)
Command.Parameters.AddWithValue("@TimeReceive", TextBox8.Text)
Command.Parameters.AddWithValue("@CloseDate", TextBox13.Text)
Command.Parameters.AddWithValue("@CloseTime", TextBox7.Text)
Command.Parameters.AddWithValue("@TimeUsage", TextBox6.Text)
Command.Parameters.AddWithValue("@OverSLA", TextBox9.Text)
Command.Parameters.AddWithValue("@Technical", TextBox10.Text)
Command.Parameters.AddWithValue("@Description", TextBox11.Text)
Try
Connection.Open()
Command.ExecuteNonQuery()
Connection.Close()
MessageBox.Show("Success!")
Catch ex As Exception
MessageBox.Show("Error " & ex.Message)
End Try
End Sub
End Class
ไม่ได้เหมือนเดิมค่ะพี่
ช่วยด้วยนะค่ะ
งงมากเลย มัน errorตรงนี่ค่ะ
CommandString = "Insert Into [Table2] " &_
12. "([Log ID], [Branch], [Severity], [No Hour], [Open Date], [Open Time], [Time Receive], " &_
13. "[Close Date], [Close Time], [Time Usage], [Over SLA], [Technical], [Description]) " &_
14. "Values " &_
15. "(@LogID, @Branch, @Severity, @NoHour, @OpenDate, @OpenTime, @TimeReceive, " &_
16. "@CloseDate, @CloseTime, @TimeUsage, @OverSLA, @Technical, @Description)"
|
 |
 |
 |
 |
Date :
2009-12-10 21:04:02 |
By :
kik |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
มันบอกว่า Syntax error. ค่
|
 |
 |
 |
 |
Date :
2009-12-10 21:09:18 |
By :
kik |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เอาอันนี้ดู ว่าจะได้ไหม
Code (VB.NET)
Private Sub Button15_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button15.Click
Dim Connection As System.Data.OleDb.OleDbConnection
Dim ConnectionString As String
ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\Database1.accdb"
Connection = New System.Data.OleDb.OleDbConnection(oleDbConnectionString)
Dim CommandString As String
CommandString = "Insert Into [Table2] ([Log ID], [Branch], [Severity], [No Hour], [Open Date], [Open Time], [Time Receive], [Close Date], [Close Time], [Time Usage], [Over SLA], [Technical], [Description]) Values (@LogID, @Branch, @Severity, @NoHour, @OpenDate, @OpenTime, @TimeReceive, @CloseDate, @CloseTime, @TimeUsage, @OverSLA, @Technical, @Description)"
Dim Command As New OleDbCommand(CommandString, Connection)
Command.Parameters.AddWithValue("@LogID", TextBox1.Text)
Command.Parameters.AddWithValue("@Branch", TextBox2.Text)
Command.Parameters.AddWithValue("@Severity", TextBox3.Text)
Command.Parameters.AddWithValue("@NoHour", TextBox4.Text)
Command.Parameters.AddWithValue("@OpenDate", TextBox12.Text)
Command.Parameters.AddWithValue("@OpenTime", TextBox5.Text)
Command.Parameters.AddWithValue("@TimeReceive", TextBox8.Text)
Command.Parameters.AddWithValue("@CloseDate", TextBox13.Text)
Command.Parameters.AddWithValue("@CloseTime", TextBox7.Text)
Command.Parameters.AddWithValue("@TimeUsage", TextBox6.Text)
Command.Parameters.AddWithValue("@OverSLA", TextBox9.Text)
Command.Parameters.AddWithValue("@Technical", TextBox10.Text)
Command.Parameters.AddWithValue("@Description", TextBox11.Text)
Try
Connection.Open()
Command.ExecuteNonQuery()
Connection.Close()
MessageBox.Show("Connect OK")
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Sub
ถ้าไม่ได้อีกลองเปลี่ยนชื่อ field ของ database ลองเอา space ออกดู ชื่อฟิล [Log ID] ไม่รู้จะเกี่ยวหรือเปล่า
|
 |
 |
 |
 |
Date :
2009-12-10 21:15:22 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
มัน Connect OK แล้วค่ะ
แต่ว่าพอไปดู ใน Access ที่เก็บคอลัมน์ไว้
มันไม่มีข้อมูลที่กรอกใน textbox ค่ะ

ไม่รู้ว่านู่ทำใน access ถูกรึเปล่า
รบกวนแนะนำด้วยนะ
ค่ะ่
|
 |
 |
 |
 |
Date :
2009-12-10 21:29:27 |
By :
kik |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ได้แล้วค่ะ
นู่จะให้คะแนนพี่ๆๆได้ไงค่ะเนีย
ขอบคุณมากๆๆๆๆๆๆๆๆๆเลยค่ะ
ถ้ามีปัญหาอีกนู่ขอรบกวน เว็บthaicreate อีกได้ไมค่ะ
ยิ้มออกแล้ว
|
 |
 |
 |
 |
Date :
2009-12-10 21:39:22 |
By :
kik |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|

|
 |
 |
 |
 |
Date :
2009-12-10 22:48:01 |
By :
otomokung |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|