 |
|
รบกวนช่วยดูความผิดพลาด การลบข้อมูล ใน row หน่อยครับ |
|
 |
|
|
 |
 |
|
เอา Code มาทั้งหมดน่ะครับ เหมือนว่าคุณไม่ได้ New Class ครับ
|
 |
 |
 |
 |
Date :
2011-06-19 13:56:29 |
By :
webmaster |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ตรง binding ก็ยังไม่ได้ทำนะครับ แต่ก็ยัง งง อยู่ ทำตามหนังสือมาอ่าครับ
Code (VB.NET)
Imports System.Data
Imports System.Data.OleDb
Imports System.IO
Public Class Food
Private _dataset As DataSet
Private _conn As OleDbConnection
Private _cmd As OleDbCommand
Private _adapter As OleDbDataAdapter
Private _rowCount As Integer = 0
Private _position As Integer = 0
Private Sub Food_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
showdata()
End Sub
Private Sub showdata()
Dim _conn As New OleDbConnection(_conStr)
_conn.Open()
Dim sql As String = "SELECT * FROM Menu"
Dim _cmd As New OleDbCommand(sql, _conn)
Dim adapter As New OleDbDataAdapter(_cmd)
Dim data As New DataSet()
adapter.Fill(data, "food")
DataGridView1.DataSource = data.Tables("food")
_conn.Close()
End Sub
Private Sub Bindings()
'Binding ข้อมูลกับ TextBox
tbxfoodID2.DataBindings.Add("Text", _dataset, _
"food.Food_ID")
tbxfoodtype2.DataBindings.Add("Text", _dataset, _
"food.Food_Type")
tbxfoodname2.DataBindings.Add("Text", _dataset, _
"food.Food_Name")
tbxfoodprice2.DataBindings.Add("Text", _dataset, _
"food.Food_Price")
'ให้เริ่มแสดงที่แถวแรก()
Me.BindingContext(_dataset, "Menu").Position = 0
End Sub
Private Sub TabControl1_SelectedIndexChanged() _
Handles TabControl1.SelectedIndexChanged
If (TabControl1.SelectedIndex = 0) Then
ClearBindings()
btndelete.Enabled = False
ElseIf (TabControl1.SelectedIndex = 1) Then
showdata()
'Bindings()
btndelete.Enabled = True
End If
End Sub
Private Sub ClearBindings()
Reset()
tbxfoodID.Text = " "
Cmbtype.Text = " "
tbxfoodname.Text = " "
tbxfoodprice.Text = " "
End Sub
Private Sub btnsave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnsave.Click
Dim _conn As New OleDbConnection(_conStr)
_conn.Open()
If tbxfoodID.Text = "" Then
MessageBox.Show("กรุณากรอกรหัสอาหาร")
Me.tbxfoodID.Focus()
Exit Sub
End If
If Cmbtype.Text = "" Then
MessageBox.Show("กรุณาเลือกประเภทอาหาร")
Me.Cmbtype.Focus()
Exit Sub
End If
If tbxfoodname.Text = "" Then
MessageBox.Show("กรุณากรอกชื่ออาหาร")
Me.tbxfoodname.Focus()
Exit Sub
End If
If tbxfoodprice.Text = "" Then
MessageBox.Show("กรุณากรอกราคาอาหาร")
Me.tbxfoodprice.Focus()
Exit Sub
End If
Dim sql As String = "INSERT INTO " & _
"Menu(Food_ID, " & _
"Food_Type, " & _
"Food_Name, " & _
"Food_Price) " & _
"VALUES(@id, @type, @name, @price)"
Dim _cmd As New OleDbCommand(sql, _conn)
_cmd.Parameters.AddWithValue("@id", tbxfoodID.Text)
_cmd.Parameters.AddWithValue("@type", Cmbtype.SelectedItem)
_cmd.Parameters.AddWithValue("@name", tbxfoodname.Text)
_cmd.Parameters.AddWithValue("@price", tbxfoodprice.Text)
Dim afftectedRows As Integer = _cmd.ExecuteNonQuery()
If (afftectedRows = -1) Then
MsgBox("เกิดข้อผิดพลาด!" & vbNewLine & "ไม่สามารถจัดเก็บข้อมูลได้")
End If
_conn.Close()
ClearBindings()
showdata()
MsgBox("บันทึกรายการอาหารเรียบร้อย")
End Sub
Private Sub btndelete_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btndelete.Click
If (MsgBox("คุณต้องการลบรายการอาหารนี้ใช่หรือไม่ ?", MsgBoxStyle.OkCancel) = _
MsgBoxResult.Cancel) Then
Return
End If
Dim FoodID As String = DataGridView1.SelectedRows.Item(0).Cells(0).Value
Dim sql As String = "DELETE * FROM Menu WHERE Food_ID = " & FoodID
_cmd.CommandText = sql
_cmd.ExecuteNonQuery()
btndelete.Enabled = True
End Sub
Private Sub DataGridView1_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellContentClick
If (DataGridView1.SelectedRows.Count > 0) Then
btndelete.Enabled = True
Else
btndelete.Enabled = False
End If
End Sub
End Class
|
ประวัติการแก้ไข 2011-06-20 01:52:06
 |
 |
 |
 |
Date :
2011-06-19 20:33:35 |
By :
huto |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
นี่ ฟอร์ม ครับ

|
 |
 |
 |
 |
Date :
2011-06-20 01:54:39 |
By :
huto |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Up
|
 |
 |
 |
 |
Date :
2011-06-20 23:17:12 |
By :
huto |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ช่วยด้วยคร๊าบ
|
 |
 |
 |
 |
Date :
2011-06-23 14:19:07 |
By :
huto |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
บรรทัดที่ 9 เปลี่ยนเป็น Private _cmd As New OleDbCommand
|
 |
 |
 |
 |
Date :
2011-06-23 15:56:52 |
By :
kaimuk |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (VB.NET)
Private Sub btndelete_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btndelete.Click
If (MsgBox("คุณต้องการลบรายการอาหารนี้ใช่หรือไม่ ?", MsgBoxStyle.OkCancel) = _
MsgBoxResult.Cancel) Then
Exit Sub
End If
Dim FoodID As String = "''"
If DataGridView1.SelectedRows.Item(0).Cells(0).Value IsNot Nothing Then
FoodID = DataGridView1.SelectedRows.Item(0).Cells(0).Value.ToString()
FoodID = "'" & FoodID & "'"
End If
Dim sql As String = "DELETE Menu WHERE Food_ID = " & FoodID
If _cmd Is Nothing Then
_cmd = New OleDbCommand(sql, _conn)
Else
_cmd.CommandText = sql
End If
If _conn.State <> ConnectionState.Open Then
_conn.Open()
End If
'-------[ถ้า run ผ่านก็ลบ 2 บันทัดข้างล่างนี้ทิ้ง]----------
Clipboard.SetText(sql)
MsgBox("เปิด notepad แล้วกด ctrl+v ลองเอา sql ที่ได้ไป run ดู" & vbCrLf & sql)
'-----------------------------------------------------------
_cmd.ExecuteNonQuery()
_conn.Close()
btndelete.Enabled = True
End Sub
|
ประวัติการแก้ไข 2011-06-23 19:13:50
 |
 |
 |
 |
Date :
2011-06-23 19:12:48 |
By :
Programmer Of Persia |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณ คุณKaimuK
และ คุณ Programmer Of Persia ของคุณ ก็ทำได้แล้วนะครับ แต่ก็ติดที่เดียวกันครับ
รบกวนอีกทีครับ

|
 |
 |
 |
 |
Date :
2011-06-25 18:55:45 |
By :
huto |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ดู Error ด้วยครับ น่าจะเป็นที่ FoodID ไม่มีค่าหรือเปล่าครับ
|
 |
 |
 |
 |
Date :
2011-06-25 20:27:49 |
By :
webmaster |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ที่แจ้ง error ครับ

|
 |
 |
 |
 |
Date :
2011-06-25 22:03:36 |
By :
huto |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เชคตัวแปร conn ว่า New Connection แล้วทำการ Open หรือยังครับ
|
 |
 |
 |
 |
Date :
2011-06-25 22:17:03 |
By :
webmaster |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ได้แล้วครับ
ขอบคุณครับ
|
 |
 |
 |
 |
Date :
2011-06-25 23:30:40 |
By :
huto |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
DELETE FROM menu where...........
ไม่มี * ครับ
|
 |
 |
 |
 |
Date :
2011-06-26 00:13:38 |
By :
nong1210 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|