 |
|
คือผม เอา Code ที่ แจกตามหัวข้อแบบที่ผมตั้งเนี่ยแหละไปแก้ไข ผมไม่ได้ทำไรเลย เพียงแต่ ใส่ Code ลงไปเท่านั้นนะครับ
และแก้ไขให้ตรงกับ ฟอร์มผม รวมทั้ง database ทั้งหมด แต่ก็ยังมีปัญหาครัับ
คือ code ตรงที่ใส่ใน Gridview มัน Error ครับ (ผมเอาไปแก้ไขเป็นของผม ดัง code ด้านล่าง ไม่ทราบว่าผมทำผิดตรงไหน มัน ผิดตรง e.row มันหา e .row ไม่เจอครับ)
Code (VB.NET)
Private Sub CustomerDataGridView_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles CustomerDataGridView.CellContentClick
'*** CustomerID ***'
Dim lblCustomerID As Label = CType(e.Row.FindControl("lblCustomerID"), Label)
If Not IsNothing(lblCustomerID) Then
lblCustomerID.Text = e.Row.DataItem("CustomerID")
End If
'*** Email ***'
Dim lblName As Label = CType(e.Row.FindControl("lblName"), Label)
If Not IsNothing(lblName) Then
lblName.Text = e.Row.DataItem("Name")
End If
'*** Name ***'
Dim lblEmail As Label = CType(e.Row.FindControl("lblEmail"), Label)
If Not IsNothing(lblEmail) Then
lblEmail.Text = e.Row.DataItem("Email")
End If
'*** CountryCode ***'
Dim lblCountryCode As Label = CType(e.Row.FindControl("lblCountryCode"), Label)
If Not IsNothing(lblCountryCode) Then
lblCountryCode.Text = e.Row.DataItem("CountryCode")
End If
'*** Budget ***'
Dim lblBudget As Label = CType(e.Row.FindControl("lblBudget"), Label)
If Not IsNothing(lblBudget) Then
lblBudget.Text = FormatNumber(e.Row.DataItem("Budget"), 2)
End If
'*** Used ***'
Dim lblUsed As Label = CType(e.Row.FindControl("lblUsed"), Label)
If Not IsNothing(lblUsed) Then
lblUsed.Text = FormatNumber(e.Row.DataItem("Used"), 2)
End If
End Sub
ส่วนอีกที่ผม Error ที่ Sub BindData() (บรรทัด CustomerDataGridView.DataBind() ครับ มันหา DataBind() ไม่เจอ)
Code (VB.NET)
Dim objConn As New OleDBconnection
Dim objCmd As New OleDbCommand
Dim dtAdapter As New OleDbDataAdapter
Dim ds As New DataSet
Dim strConnString, strSQL As String
strConnString = "Server=localhost;Uid=sa;PASSWORD=;database=mydatabase;Max Pool Size=400;Connect Timeout=600;"
strSQL = "SELECT * FROM customer WHERE (Name like '%" & strKeyWord & "%' OR Email like '%" & strKeyWord & "%') "
objConn.ConnectionString = strConnString
With objCmd
.Connection = objConn
.CommandText = strSQL
.CommandType = CommandType.Text
End With
dtAdapter.SelectCommand = objCmd
dtAdapter.Fill(ds)
'*** BindData to GridView ***'
CustomerDataGridView.DataSource = ds
CustomerDataGridView.DataBind() '<<<<<<< ตรงนี้ครับที่ Error มันหา DataBind ไม่เจอ
dtAdapter = Nothing
objConn.Close()
objConn = Nothing
End Sub
วานคุณ Mr.win ช่วยตอบที่นะครับ
แล้ว สร้าง event onclick <<< มันคืออะไร ทำยังไง ช่วยอธิบายด้วยนะครับ ผมมือใหม่มากๆนะครับ แต่พอไปได้นะครับ
Tag : .NET, VB.NET
|
ประวัติการแก้ไข 2010-10-31 09:33:00
|
 |
 |
 |
 |
Date :
2010-10-31 08:08:40 |
By :
antipierce |
View :
1674 |
Reply :
4 |
|
 |
 |
 |
 |
|
|
|
 |