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,037

HOME > .NET Framework > Forum > ขอสอบถามคำสั่งหน่อยครับ คำสั่งเมื่อคลิก ที่ cell ของ grid viewย้ายไปอีกฟอร์ม หนึ่ง



 

ขอสอบถามคำสั่งหน่อยครับ คำสั่งเมื่อคลิก ที่ cell ของ grid viewย้ายไปอีกฟอร์ม หนึ่ง

 



Topic : 062177

Guest




ขอสอบถามคำสั่งหน่อยครับ คำสั่งเมื่อคลิก ที่ cell ของ grid view เเล้วข้อมูล ย้ายไปอีกฟอร์ม หนึ่ง เเต่เมื่อผมเพิ่มฟอร์ม main มา มันไม่ทำงานครับ
มันเกิดจาก อะไรครับ


Code (VB.NET)
        frmland.txtUTM_CODE.Text = .Rows.Item(e.RowIndex).Cells(0).Value.ToString()
 

สมมุติ frmland เป็นฟอร์มลูกของ ฟอร์ม main มันเกิดจาก อะไรครับ



Tag : .NET, Ms SQL Server 2008, VBScript, Win (Windows App), VB.NET, VS 2010 (.NET 4.x)







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-06-24 13:05:59 By : พิศาล ศรีสุราช View : 1121 Reply : 3
 

 

No. 1



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



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


ขอดู Code เต็มๆ ได้ไหมครับ จะได้แคบลงมานิดนึง แบบนี้กว้างไปอ่ะครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-24 13:21:19 By : kaimuk
 


 

No. 2



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



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


เอา Error มาด้วย
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-24 13:39:08 By : watcharop
 

 

No. 3

Guest


มันไม่ error เเต่มันไม่ย้าย ไปเลย เเต่ มี เเค่ สองฟอร์ม มัน ทำ งาน เเต่เมื่อ เพิ่ม ฟอร์ม เเม่ (ฟอร์ม main) มามันไม่ทำงานครับ ,มันติดที่ ฟอร์ม เเม่ ครับ

Code (VB.NET)
Imports System.Data.SqlClient


Public Class search_land

    Dim Conn As SqlConnection = New SqlConnection
    Dim ds As New DataSet
    Dim da As SqlDataAdapter

   

    Private Sub btnsearch_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnsearch.Click
        'If MsgBox("คุณต้องการค้นหาข้อมูลใช่หรือไม่ ?", MsgBoxStyle.Information + MsgBoxStyle.OkCancel, "ค้นหาข้อมูล") = MsgBoxResult.Ok Then

        Try
            ds.Tables.Clear()
            Dim ra As String = ""
            If RadioButton1.Checked Then
                'Me.Label1.Text = "ตามรหัส"
                ra = "LANDID"

            End If
            If RadioButton2.Checked Then
                ra = "PARCEL_CODE"
            End If

            If TextBox4.Text = "" Then
                MsgBox("กรุณากรอกข้อมูลที่ต้องการค้นหา", MsgBoxStyle.Information)
                Me.Close()
            Else

                Dim strConn As String
                strConn = "Data Source=.\SQLEXPRESS;Initial Catalog=SSPEGIS;Integrated Security=True"

                With Conn
                    If .State = ConnectionState.Open Then .Close() 'ถ้าเปิดอยู่ให้ปิดการเชื่อมต่อ Connection ก่อน
                    .ConnectionString = strConn                    ' กำหนดรูปแบบและฐานข้อมูลสำหรับการติดต่อ
                    .Open()                                        'ทำการติดต่อฐานข้อมูล
                End With



                Dim sql As String = "SELECT * from landView_1 where " & ra & " like '" & TextBox4.Text & "%'"





                da = New SqlDataAdapter(sql, Conn)

                da.Fill(ds, "landView_1")
                myGridView.DataSource = ds.Tables("landView_1")

                TextBox4.Clear()
            End If

            ' If dgv1.DataSource = "" Then
            'MsgBox("iiii")
            ' End If
        Catch ex As Exception
            MessageBox.Show(ex.ToString, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
        End Try
        ' End If


        Dim cs As New DataGridViewCellStyle

        cs.Font = New Font("ms sans serif", 10, FontStyle.Regular)

        cs.Alignment = DataGridViewContentAlignment.MiddleCenter

        cs.ForeColor = Color.Blue

        With myGridView

            .ColumnHeadersDefaultCellStyle = cs

             .Columns(0).HeaderText = "LANDID"

            .Columns(1).HeaderText = "รหัสภาษี"

            .Columns(2).HeaderText = "รหัสเเผนที่"

            .Columns(0).Width = 180

            .Columns(1).Width = 140

            .Columns(2).Width = 100

            .Columns(0).SortMode = DataGridViewColumnSortMode.NotSortable

            .Columns(1).SortMode = DataGridViewColumnSortMode.NotSortable

            .Columns(2).SortMode = DataGridViewColumnSortMode.NotSortable

        End With

    End Sub


    Private Sub dgv_CellMouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles myGridView.CellMouseUp

        If e.RowIndex = -1 Then Exit Sub
        With myGridView

            frmland.txtLANDID.Text = .Rows.Item(e.RowIndex).Cells(0).Value.ToString()
            frmland.txtPARCEL_CODE.Text = .Rows.Item(e.RowIndex).Cells(1).Value.ToString()
            frmland.txtPICTURE_CODE.Text = .Rows.Item(e.RowIndex).Cells(2).Value.ToString()
           
           
                    End With
        Me.Close()

    End Sub

End Class

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-24 14:07:31 By : พิศาล ศรีสุราช
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ขอสอบถามคำสั่งหน่อยครับ คำสั่งเมื่อคลิก ที่ cell ของ grid viewย้ายไปอีกฟอร์ม หนึ่ง
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 02
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 อัตราราคา คลิกที่นี่