Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,036

HOME > .NET Framework > Forum > เพิ่มข้อมูลเข้าdatagridแล้วมันทับข้อมูลเดิม แก้ยังไงค่ะ



 

เพิ่มข้อมูลเข้าdatagridแล้วมันทับข้อมูลเดิม แก้ยังไงค่ะ

 



Topic : 037928



โพสกระทู้ ( 96 )
บทความ ( 0 )



สถานะออฟไลน์




คือว่า หนูอยากให้เมื่อกดปุ่มแล้ว ข้อมูลจากtextbox ใส่ลงไปในdatagrid
แต่ปัญหาที่เกิดขึ้นตอนนี้คือ เมื่อกดปุ่มเพิ่ม ข้อมูลใหม่ที่เพิ่งใส่เข้าไปไปทับข้อมูลเดิมอ่าค่ะ เหมือนว่ามันจะแสดงเฉพาะข้อมูลล่าสุดที่เพิ่มเข้า แต่ที่หนูอยากให้เป็นคือให้แสดงข้อมูลทั้งหมดที่ได้เพิ่มเข้าไปแล้ว
ทำหน้ารายการขายค่ะ ต้องแก้โค้ดอย่างไรดีค่ะ

for (int i = 0; i < dataGridView1.Rows.Count; i++)
{

dataGridView1.Rows[i].Cells[0].Value = cmbType.Text;
dataGridView1.Rows[i].Cells[1].Value = cmbProductName.Text;
dataGridView1.Rows[i].Cells[2].Value = lblProductID.Text;
dataGridView1.Rows[i].Cells[3].Value = lblSalePrice.Text;
dataGridView1.Rows[i].Cells[4].Value = txtAmount.Text;
dataGridView1.Rows[i].Cells[5].Value = lblTotal.Text;
dataGridView1.Rows[i].Cells[6].Value = lblbalance.Text;
}

นี่เป็นโค้ดที่หนูใช้อยุ่ตอนนี้ ช่วยหนูด้ยวน่ะค่ะ โปรเจ็คใกล้ส่งแล้วค่ะ ขอบคุณล่วงหน้าน่ะค่ะ



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-01-29 14:46:37 By : ling-keaw View : 2657 Reply : 12
 

 

No. 1



โพสกระทู้ ( 168 )
บทความ ( 0 )



สถานะออฟไลน์


Code (C#)
เอาไปใส่ตอนกดปุ่ม Add  
dataGridView1.Rows.Add();
dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[0].Value = cmbType.Text;
dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[1].Value = cmbProductName.Text;
dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[2].Value = lblProductID.Text;
dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[3].Value =lblSalePrice.Text;
dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[4].Value = txtAmount.Text;
dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[5].Value = lblTotal.Text;
dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[6].Value =lblbalance.Text;


แต่ถ้าจะให้ดี ควรจะเอาข้อมูลไปใส่ที่ datatable แล้ว ก็ binding กับ dataGridview จะดีกว่านะครับ






Date : 2010-01-29 15:42:30 By : msorawich
 


 

No. 2



โพสกระทู้ ( 96 )
บทความ ( 0 )



สถานะออฟไลน์


ลองเอาไปทำแล้วน่ะค่ะ แต่ว่า
มันแสดงเฉพาะข้อมุลที่เพิ่งใส่เข้าไป เท่านั้นอ่าค่ะ
แต่ก้เพิ่มจำนวนrow ข้อมูลสินค้าที่เพิ่มเข้าไปให้แล้วน่ะค่ะ
เพียงแต่ไม่มีข้อมูลภายในrow นั้นๆอ่าค่ะ
มันเป็นแบบนี้อ่าค่ะ
Date : 2010-01-29 16:06:07 By : ling-keaw
 

 

No. 3



โพสกระทู้ ( 168 )
บทความ ( 0 )



สถานะออฟไลน์


โค๊ดที่พี่ยกตัวอย่าง ให้ดู จะต้องไม่อยู่ใน for loop นะครับ
Date : 2010-01-29 16:41:32 By : msorawich
 


 

No. 4



โพสกระทู้ ( 96 )
บทความ ( 0 )



สถานะออฟไลน์


เหอะๆๆ
Date : 2010-01-29 18:31:01 By : ling-keaw
 


 

No. 5



โพสกระทู้ ( 96 )
บทความ ( 0 )



สถานะออฟไลน์


น้องก็ไม่ได้ใส่ในลูปforน่ะค่ะ

แต่มันก้ยังเป็นเหมือนเดิมอยู่ ยังไม่แสดงข้อมูลทั้งหมดที่แอดลงไปอ่าค่ะ
ทำไงดีละค่ะทีนี้
Date : 2010-01-29 18:47:40 By : ling-keaw
 


 

No. 6



โพสกระทู้ ( 59 )
บทความ ( 0 )



สถานะออฟไลน์


ขอความกรุณาต่อด้วยนะครับ อยากได้เหมือนกัน ผมลองแล้วมันเหมือนกับว่าโค้ดที่ให้มา มันจะเพิ่มข้อมูลทุกแถวสุดท้ายอะครับเราต้องการให้เพิ่มที่แถวที่มีข้อมูลแถวสุดเนี่ยสิครับ ทำอย่างไร
Date : 2010-10-24 02:53:15 By : ibankza11
 


 

No. 7

Guest


for (int i = 0; i < dataGridView1.Rows.Count; i++)
{

dataGridView1.Rows[i][0].Value = cmbType.Text;
dataGridView1.Rows[i][1].Value = cmbProductName.Text;
dataGridView1.Rows[i][2].Value = lblProductID.Text;
dataGridView1.Rows[i][3].Value = lblSalePrice.Text;
dataGridView1.Rows[i][4].Value = txtAmount.Text;
dataGridView1.Rows[i][5].Value = lblTotal.Text;
dataGridView1.Rows[i][6].Value = lblbalance.Text;
}
Date : 2011-02-01 20:09:34 By : program
 


 

No. 8

Guest


for (int i = 0; i < dataGridView1.Rows.Count; i++)
{

dataGridView1.Rows[i].Cells[0].Value = cmbType.Text;
dataGridView1.Rows[i].Cells[1].Value = cmbProductName.Text;
dataGridView1.Rows[i].Cells[2].Value = lblProductID.Text;
dataGridView1.Rows[i].Cells[3].Value = lblSalePrice.Text;
dataGridView1.Rows[i].Cells[4].Value = txtAmount.Text;
dataGridView1.Rows[i].Cells[5].Value = lblTotal.Text;
dataGridView1.Rows[i].Cells[6].Value = lblbalance.Text;
}

แก้เครื่องหมายนิดเดี่ยว เครื่องหมายมากกว่า
for (int i = 0; i > dataGridView1.Rows.Count; i++)
{

dataGridView1.Rows[i].Cells[0].Value = cmbType.Text;
dataGridView1.Rows[i].Cells[1].Value = cmbProductName.Text;
dataGridView1.Rows[i].Cells[2].Value = lblProductID.Text;
dataGridView1.Rows[i].Cells[3].Value = lblSalePrice.Text;
dataGridView1.Rows[i].Cells[4].Value = txtAmount.Text;
dataGridView1.Rows[i].Cells[5].Value = lblTotal.Text;
dataGridView1.Rows[i].Cells[6].Value = lblbalance.Text;
}
Date : 2011-02-01 20:14:25 By : program
 


 

No. 9

Guest


รอบแรก
เริ่มต้น i = 0
ถ้า i > dataGridView1.Rows.Count จริง
ทำ
dataGridView1.Rows[i].Cells[0].Value = cmbType.Text;
dataGridView1.Rows[i].Cells[1].Value = cmbProductName.Text;
dataGridView1.Rows[i].Cells[2].Value = lblProductID.Text;
dataGridView1.Rows[i].Cells[3].Value = lblSalePrice.Text;
dataGridView1.Rows[i].Cells[4].Value = txtAmount.Text;
dataGridView1.Rows[i].Cells[5].Value = lblTotal.Text;
dataGridView1.Rows[i].Cells[6].Value = lblbalance.Text;

รอบที่สอง
เริ่มต้น i = 0
ถ้า i > dataGridView1.Rows.Count เท็จ
ทำ
i++ แทน
Date : 2011-02-01 20:21:29 By : program
 


 

No. 10



โพสกระทู้ ( 1,348 )
บทความ ( 1 )



สถานะออฟไลน์


Code อย่าง No.1 ก็ถูกแล้วนะ
แต่ก็อย่างที่เค้าว่าแหละ วิธีการนี้เค้าไม่แนะนำให้ใช้ในการเขียนโปรแกรม
http://msdn.microsoft.com/en-US/library/x0akdhcd(v=VS.80).aspx
This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Date : 2011-02-02 09:10:08 By : หางอึ่ง
 


 

No. 11



โพสกระทู้ ( 1,348 )
บทความ ( 1 )



สถานะออฟไลน์


การเขียนโปรแกรมเพื่อทำงานกับข้อมูล กรณีเป็น Grid
โดยหลักการต้องมี

1. DataTable เป็นที่เก็บข้อมูลชั่วคราวก่อนบันทึกเข้า Database จริงๆ

2. DataGridView เป็น Interface กับ User

3. BindingSource เป็นตัวกลางระหว่าง DataTable กับ DataGridView
ในการแสดงผล BindingSource จะอ่านข้อมูลจาก DataTable มาแสดงใน DataGridView
ในทำนองกลับกัน เมื่อ User แก้ไขหรือเพิ่มข้อมูลผ่าน DataGridView ตัว BindingSource จะทำหน้าที่เอาข้อมูลนั้นไปเก็บใน DataTable
ในกรณีต้องการเพิ่มข้อมูลใหม่ โดยให้ผ่านการเขียนโค้ด อาจเรียกใช้ BindingSource.AddNew

4. DataAdapter .... ขึ้เกียจพิมพ์ล่ะ
Date : 2011-02-02 09:16:22 By : หางอึ่ง
 


 

No. 12



โพสกระทู้ ( 19 )
บทความ ( 0 )



สถานะออฟไลน์


NO.9 ดูเหมือนจะเข้าใจ หลักการ for ผิดนะ ครับ
No.1 ไม่ลองเชคก่อนละครับ ว่าใน datagrid view มีกี่แถวแล้ว ค่อยเอาเข้าไปต่อ

เช่น

i = dataGridView1.Rows.Count เชคถึงแถวไหน แล้ว row มันเริ่มแต่ 0 ปะ จำไม่ได้ ถ้าเริ่ม0 ต้อง i = dataGridView1.Rows.Count+1

dataGridView1.Rows[i].Cells[0].Value = cmbType.Text;
dataGridView1.Rows[i].Cells[1].Value = cmbProductName.Text;
dataGridView1.Rows[i].Cells[2].Value = lblProductID.Text;
dataGridView1.Rows[i].Cells[3].Value = lblSalePrice.Text;
dataGridView1.Rows[i].Cells[4].Value = txtAmount.Text;
dataGridView1.Rows[i].Cells[5].Value = lblTotal.Text;
dataGridView1.Rows[i].Cells[6].Value = lblbalance.Text;

แต่ทำตามท่านด้านบนถูก หลักกว่า งับ


ประวัติการแก้ไข
2011-02-02 15:40:34
Date : 2011-02-02 15:31:39 By : dangersun
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : เพิ่มข้อมูลเข้าdatagridแล้วมันทับข้อมูลเดิม แก้ยังไงค่ะ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 03
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่