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 > datagridview โชว์ใน textbox มันไม่โชว์ครับ ขอผู้รู้ทุกท่านช่วยตอบด้วครับ มันต้องมีอะไรเพิ่หรือเปล่าครั ขอบคุณครับ



 

datagridview โชว์ใน textbox มันไม่โชว์ครับ ขอผู้รู้ทุกท่านช่วยตอบด้วครับ มันต้องมีอะไรเพิ่หรือเปล่าครั ขอบคุณครับ

 



Topic : 055233

Guest




Code (C#)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication10
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        dbGoneDataContext db = new dbGoneDataContext();
        IOrderedQueryable<Human> IHuman;
        private void Form1_Load(object sender, EventArgs e)
        {
        }

        private void cmdSearch_Click(object sender, EventArgs e)
        {
                if (txtSearch.Text.Trim() == "")
            {
                MessageBox.Show("กรุณาระบุรหัสลูกค้าก่อน !!! ", "ข้อผิดพลาด", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }

            IHuman = from c in db.Humans
                     where c.IDCardName.Contains(txtSearch.Text.Trim())
                     || c.AmphurCard.Contains(txtSearch.Text.Trim())
                     orderby c.AmphurCard
                     select c;

            if (IHuman.Count() > 0)
            {
                dgvCustomersList.DataSource = IHuman.ToList();

            }
            else
            {

                dgvCustomersList.DataSource = null;
                MessageBox.Show("เงื่อนไขที่คุณป้อน ไม่มีข้อมูลลูกค้า !!!", "ผลการค้นหา", MessageBoxButtons.OK, MessageBoxIcon.Information);
                txtSearch.Focus();
                txtSearch.SelectAll();
            }
            FormatdataGridView1();
        }

        private void FormatdataGridView1()
        {
            if (dgvCustomersList.RowCount > 0)
            {
                dgvCustomersList.Columns[0].HeaderText = "รหัสลูกค้า";
                dgvCustomersList.Columns[1].HeaderText = "ชื่อบริษัท";
                dgvCustomersList.Columns[2].HeaderText = "ชื่อติดต่อ";

                dgvCustomersList.Columns[0].Width = 80;
                dgvCustomersList.Columns[1].Width = 150;
                dgvCustomersList.Columns[2].Width = 90;
            }
        }

        private void cmdAdd_Click(object sender, EventArgs e)
        {
            var result = CheckCustomersData();
            if (result == true)
            {
                Human c = new Human();
                c.IDCardName = txtCustomerID.Text.Trim();
                c.AmphurCard = txtCompanyName.Text.Trim();
                c.ProvinceCard = txtContactName.Text;

                if (MessageBox.Show("คุณต้องการเพิ่มข้อมูลลูกค้าใหม่ ใช่หรือไม่", "คำยืนยัน", MessageBoxButtons.YesNo) == System.Windows.Forms.DialogResult.Yes)
                {
                    db.Humans.InsertOnSubmit(c);
                    db.SubmitChanges();

                    ClearAllData();

                    MessageBox.Show("เพิ่มข้อมูลลูกค้าใหม่ เรียบร้อยแล้ว", "ผลการทำงาน");
                }
            }
        }

        private void dgvCustomersList_CellMouseUp(object sender, DataGridViewCellMouseEventArgs e)
        {
            if (e.RowIndex == -1)
            {
                return;
            }
            txtCustomerID.Text = dgvCustomersList.Rows[e.RowIndex].Cells[0].Value.ToString();
            txtCompanyName.Text = dgvCustomersList.Rows[e.RowIndex].Cells[1].Value.ToString();
            txtContactName.Text = dgvCustomersList.Rows[e.RowIndex].Cells[2].Value.ToString();

            txtCustomerID.Focus();
            txtCustomerID.SelectAll();
        }

        private void cmdEdit_Click(object sender, EventArgs e)
        {
            var result = CheckCustomersData();
            if (result == true)
            {
                var cs = (from c in db.Humans
                          where c.IDCardName == txtCustomerID.Text.Trim()
                          select c).FirstOrDefault();

                if (cs == null)
                {
                    MessageBox.Show("รหัสลูกค้าที่คุณระบุ ไม่มี !!!", "ข้อผิดพลาด");
                    return;
                }

                cs.AmphurCard = txtCompanyName.Text.Trim();
                cs.ProvinceCard = txtContactName.Text.Trim();

                if (MessageBox.Show("คุณต้องการแก้ไขข้อมูลลูกค้า ใช่หรือไม่", "คำยืนยัน", MessageBoxButtons.YesNo) == System.Windows.Forms.DialogResult.Yes)
                {
                    db.SubmitChanges();

                    ClearAllData();

                    MessageBox.Show("แก้ไขข้อมูลลูกค้า เรียบร้อยแล้ว", "ผลการทำงาน");
                }
            }
        }

        private void ClearAllData()
        {
            txtCustomerID.Text = "";
            txtCompanyName.Text = "";
            txtContactName.Text = "";
        }

        private bool CheckCustomersData()
        {
            bool returnValue = false;

            if ((txtCustomerID.Text.Trim() == "") || (txtCompanyName.Text.Trim() == "") || (txtContactName.Text.Trim() == ""))
            {
                MessageBox.Show("กรุณาป้อนข้อมูลลูกค้าให้ครบ !!!", "ข้อผิดพลาด");
                txtCustomerID.Focus();
                returnValue = false;
            }
            else
            {
                returnValue = true;
            }
            return returnValue;
        }
    }
}




Tag : C#







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-01-28 14:24:11 By : sak View : 1125 Reply : 1
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

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

Go to : ASP.NET GridView Control - RowDataBound

ลองใช้การ RowDataBound ครับ

Go to : DataGridView , ComboBox , ListBox : Basic in (.NET) Windows Forms Application






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-01-31 10:26:43 By : webmaster
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : datagridview โชว์ใน textbox มันไม่โชว์ครับ ขอผู้รู้ทุกท่านช่วยตอบด้วครับ มันต้องมีอะไรเพิ่หรือเปล่าครั ขอบคุณครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 04
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 อัตราราคา คลิกที่นี่