 |
|
ขอถาม code การลบแถวใน datagrid ที่เราเลือก ถ้าต้องการลบแถวที่เลือกจะต้องเขียน code ยังไงคะ |
|
 |
|
|
 |
 |
|
คือว่าลองทำตามแล้วมัน err ค่ะไม่รู้ต้องเปลี่ยนตรงไหนบ้าอ่ะค่ะ
อันนี้ เป็น code ของปุ่ม เพิ่มค่ะ ช่วยชี้แนะด้วยนะคะ
Code (VB.NET)
Imports System.Data
Imports System.Data.OleDb
Imports System.IO
Public Class Form1
Private constr As String = _
"Provider=microsoft.jet.oledb.4.0;" & _
"data source=D:\Documents\Visual Studio 2008\Projects\Phamacy\WindowsApplication2\bin\Debug\data.mdb"
Private cmd As OleDbCommand
Private conn As OleDbConnection
Private Sub showdata()
Dim conn As New OleDbConnection(constr)
conn.Open()
Dim sql As String = "select * from customer"
Dim cmd As New OleDbCommand(sql, conn)
Dim adapter As New OleDbDataAdapter(cmd)
Dim data As New DataSet()
adapter.Fill(data, "cat")
DataGridView1.DataSource = data.Tables("cat")
conn.Close()
conn.Close()
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Showdata()
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim conn As New OleDbConnection(constr)
conn.Open()
If txtid.Text = "" Then
MessageBox.Show("Please input (id)")
Me.txtid.Focus()
Exit Sub
End If
If txtname.Text = "" Then
MessageBox.Show("Please input (name)")
Me.txtname.Focus()
Exit Sub
End If
If txtadd.Text = "" Then
MessageBox.Show("Please input (add)")
Me.txtadd.Focus()
Exit Sub
End If
If MaskedTextBox1.Text = "" Then
MessageBox.Show("Please input (Tel)")
Me.MaskedTextBox1.Focus()
Exit Sub
End If
If txtpha.Text = "" Then
MessageBox.Show("Please input (pha)")
Me.txtpha.Focus()
Exit Sub
End If
Dim sql As String = "INSERT INTO " & _
"customer(cusid," & _
"cusname," & _
"cusadd," & _
"custel," & _
"cuspha)" & _
"VALUES(@id,@name,@add,@tel,@pha)"
Dim cmd As New OleDbCommand(sql, conn)
cmd.Parameters.AddWithValue("id", txtid.Text)
cmd.Parameters.AddWithValue("name", txtname.Text)
cmd.Parameters.AddWithValue("add", txtadd.Text)
cmd.Parameters.AddWithValue("tel", MaskedTextBox1.Text)
cmd.Parameters.AddWithValue("pha", txtpha.Text)
Dim afftectedRows As Integer = cmd.ExecuteNonQuery()
If (afftectedRows = -1) Then
MsgBox(" ผิดพลาด! " & vbNewLine & " ไม่สามารถเก็บได้")
End If
conn.Close()
showdata()
txtid.Text = ""
txtname.Text = ""
txtadd.Text = ""
MaskedTextBox1.Text = ""
txtpha.Text = ""
End Sub
|
 |
 |
 |
 |
Date :
2010-10-26 22:59:09 |
By :
pimjai |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ผมก็ไม่ค่อยถนัด Win App น่ะครับ แต่ลองดูตอนที่ลบน่ะครับ
|
 |
 |
 |
 |
Date :
2010-10-26 23:04:38 |
By :
webmaster |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
มีใครพอจะช่วยชึ้แนะได้อีกมั้ยคะ......
|
 |
 |
 |
 |
Date :
2010-10-26 23:09:10 |
By :
pimjai |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code ไม่มีซักบรรทัดเลยครับที่ บ่งบอกได้ว่า จขกท จะลบแถวที่ต้องการออกไป เห็นมีแต่ การนำเข้าข้อมูลมายัง DataGrid (Form1_Load)
และการ Insert ข้อมูลไปยัง Database (Button1_Click)
"แสดงว่า จขกท ไม่ได้มีความเขาใจ Code ชุดนี้เลยใช้ไหมครับ"
ผมไม่ได้ว่า จขกท นะแค่อยากสอบถามข้อมูลเบื่องต้นไปใช้ในการประกอบการอธิบายจะได้สามารถ อธิบายให้ จขกท ฟังและสามารถเข้าใจได้ง่ายขึ้น
***ตอบ คำถามใน " " ด้วยครับ
|
 |
 |
 |
 |
Date :
2010-10-27 09:02:38 |
By :
kaimuk |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (VB.NET)
Dim ordID As String = dataGridView1.SelectedRows(0).Cells(0).Value.ToString()
Dim sql As String = "DELETE FROM Orders WHERE OrderID =" & ordID
_command.CommandText = sql
_command.ExecuteNonQuery()
ลองใช้แบบนี้ดูครับเคยเขียนแต่ C#
|
 |
 |
 |
 |
Date :
2010-10-27 09:21:02 |
By :
GhostLocal |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองประกาศตัวแปรอ้างไปที่อ็อปเจก CurrencyManager
Dim WithEvents objCurrencyManager As CurrencyManager
แล้วก็ใช้
objCurrencyManager.RemoveAt(objCurrencyManager.Position)
|
 |
 |
 |
 |
Date :
2010-10-27 12:20:40 |
By :
Gumbee |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
55+
ลอง ใช้ Autoclick ด้วย ซิ ครับ เเบบนี้นะ พอคลิกที่ Datagrid ก็ให้ ข้อมูล เเถวนั้นไปโชว์ ที่
ช่อง Textbox ข้าง ๆ นั้น ไง cusID ก็ ให้ไปโชว์ ที่ช่อง Textbox รหัสลูกค้า
พอ โชว์ เสร็จเเล้ว เราก็ กลิก ที่ ลบเเถวที่เลือก Code ที่ใช้ลบ ก็
SQL= ' DELETE FROM ฃื่อตาราง WHERE cusID = ' '' & textbox รหัสลูกค้า & '' ' ''
|
 |
 |
 |
 |
Date :
2010-10-29 10:02:46 |
By :
novarsza |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|