 |
|
ช่วยดูโค๊ดหน่อยค่ะว่าเออเรอเพราะอะไรค่ะ ดึงข้อมูลมาใส่ใน datagridview ค่ะ แล้วให้โปรแกรมตรวจสอบว่าหาก ในตาราง detail |
|
 |
|
|
 |
 |
|
แล้วไปเอามาจาก datagridview ทำไมล่ะครับ
ทำไมไม่เอามาจาก datatable
Code (VB.NET)
Dim str As String
Dim cmd As OleDbCommand
Dim dr As OleDbDataReader
Dim dd As DateTime = DateTime.Today
str = "Select * From employee_detail Where datework=@today"
cmd = New OleDbCommand(str, Conn)
cmd.Parameters.AddWithValue("@today", dd)
dr = cmd.ExecuteReader()
dr.Read()
If Not dr.HasRows Then
For Each drow As DataRow In dt.Rows
str = "Insert Into employee_detail(emp_id,datework) Values(@emp_id,@datework)"
cmd = New OleDbCommand(str, Conn)
cmd.Parameters.AddWithValue("@emp_id", drow("ฟิลนั้นแหละ").ToString())
cmd.Parameters.AddWithValue("@datework", dd)
cmd.ExecuteNonQuery()
Next
End If
dt ก็ประกาศเป็น global ซะ
|
 |
 |
 |
 |
Date :
2010-06-14 09:35:04 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณคุณ Tungman ที่ให้คำแนะนำค่ะ
ติดตั้งหลายวันขอบคุณค่ะ

|
 |
 |
 |
 |
Date :
2010-06-14 09:53:10 |
By :
Nicorobin |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
คุณ Tungman ใน datable น่าจะมีประมาณ 28-29 row อ่ะค่ะแต่มันกลับวน
รอบซ้ำ ๆ กันหลายรอบค่ะ มันกลับเพิ่มข้อมูลไปประมาณ 56 row อ่ะค่ะ
|
 |
 |
 |
 |
Date :
2010-06-14 11:26:41 |
By :
Nicorobin |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ดู life cycle ด้วย เหมือนมันจะรันคำสั่ง 2 รอบนะ
เพราะ 28x2 = 56
|
 |
 |
 |
 |
Date :
2010-06-14 11:47:17 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เช็คยังไงอ่ะค่ะ life cycle
|
 |
 |
 |
 |
Date :
2010-06-14 13:05:30 |
By :
Nicorobin |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เออนั่นดิ เป็น win นี่หว่า โทดทีครับ ไม่รู้เหมือนกัน 
|
 |
 |
 |
 |
Date :
2010-06-14 13:09:06 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|

|
 |
 |
 |
 |
Date :
2010-06-14 13:19:35 |
By :
Nicorobin |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|