Results 1 to 26 of 26

Thread: Datagrid select error

  1. #1

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Question Datagrid select error

    Code:
    Imports System
    Imports System.Collections.Generic
    Imports System.ComponentModel
    Imports System.Drawing
    Imports System.Text
    Imports System.Windows.Forms
    Imports Microsoft.VisualBasic
    Public Class hesap
    #Region " text alan "
        Protected Overrides Sub OnResize(ByVal e As EventArgs)
            MyBase.OnResize(e)
            Me.Button1.Left = (Me.MaskedTextBox1.Width - Me.Button1.Width)
        End Sub
    #End Region
    #Region " Plan Tanıtım "
        Protected Class hesapplani
            Inherits System.Windows.Forms.Form
            Private Mydgv As hesap
            Private WithEvents dgv As System.Windows.Forms.DataGridView
    
            Public Sub New(ByRef plan As hesap)
                Mydgv = plan
    
                Me.dgv = New System.Windows.Forms.DataGridView
                Me.SuspendLayout()
    
                Me.dgv.Location = New System.Drawing.Point(0, 0)
                Me.dgv.Margin = New System.Windows.Forms.Padding(0)
                Me.dgv.Name = "datagrid"
                Me.dgv.TabIndex = 0
                Me.dgv.Dock = DockStyle.Fill
    
    
                Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
                Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
                Me.ClientSize = New System.Drawing.Size(295, 614)
                Me.ControlBox = True
                Me.Controls.Add(Me.dgv)
                Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable
                Me.MaximizeBox = True
                Me.MinimizeBox = True
                Me.Name = "Hesap Planı"
                'Me.ShowIcon = False
                Me.ShowInTaskbar = False
                Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
                Me.ResumeLayout(False)
    
    
            End Sub
    
            Private Sub hesapplani_Load(sender As Object, e As EventArgs) Handles Me.Load
                If baglanti.State = ConnectionState.Closed Then baglanti.Open()
                dategetir(dgv, "select kodu,adi from hesapplani")
                baglanti.Close()
    
            End Sub
        End Class
    #End Region
    
        Private Sub MaskedTextBox1_GotFocus(sender As Object, e As EventArgs) Handles MaskedTextBox1.GotFocus
            MaskedTextBox1.Select(0, 1)
        End Sub
        Private Sub MaskedTextBox1_Resize(ByVal sender As Object, ByVal e As System.EventArgs) _
        Handles MaskedTextBox1.Resize
            ' SetButton()
            Me.Height = MaskedTextBox1.Height
        End Sub
    
        Private Sub MaskedTextBox1_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) _
        Handles MaskedTextBox1.TextChanged
            'RaiseEvent TextChanged(Me, EventArgs.Empty)
        End Sub
        Private hesaplar As hesapplani
    
        Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
            If hesaplar Is Nothing Then hesaplar = New hesapplani(Me)
            hesaplar.ShowDialog()
        End Sub
        Private Sub dgv_CellMouseClick(sender As Object, e As DataGridViewCellMouseEventArgs)
            Me.MaskedTextBox1.Text = Me.dgv.Rows(Me.dgv.CurrentRow.Index).Cells(0).Value
        End Sub
    End Class
    ERROR

    Code:
     Private Sub dgv_CellMouseClick(sender As Object, e As DataGridViewCellMouseEventArgs)
            Me.MaskedTextBox1.Text = Me.dgv.Rows(Me.dgv.CurrentRow.Index).Cells(0).Value
        End Sub
    I can not select data from datagrid

  2. #2
    PowerPoster dunfiddlin's Avatar
    Join Date
    Jun 2012
    Posts
    8,245

    Re: Datagrid select error

    Me.MaskedTextBox1.Text = Me.dgv.Rows(Me.dgv.CurrentRow.Index).Cells(0).Value.ToString

  3. #3

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    has failed again

    Name:  Adsız.png
Views: 224
Size:  11.7 KB

  4. #4

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    Public function()

    I need to create a selection. the other is a separate table for another table. choice is going to be a function of

  5. #5
    PowerPoster dunfiddlin's Avatar
    Join Date
    Jun 2012
    Posts
    8,245

    Re: Datagrid select error

    Do you have more than one form? Is dgv actually on the form you're coding for?

  6. #6

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    Code:
    Imports System
    Imports System.Collections.Generic
    Imports System.ComponentModel
    Imports System.Drawing
    Imports System.Text
    Imports System.Windows.Forms
    Imports Microsoft.VisualBasic
    Public Class hesap
    #Region " text alan "
        Protected Overrides Sub OnResize(ByVal e As EventArgs)
            MyBase.OnResize(e)
            Me.Button1.Left = (Me.MaskedTextBox1.Width - Me.Button1.Width)
        End Sub
    #End Region
    
    
    #Region " Plan Tanıtım "
        Protected Class hesapplani
            Inherits System.Windows.Forms.Form
            Private Mydgv As hesap
            Private WithEvents dgv As System.Windows.Forms.DataGridView
    
            Public Sub New(ByRef plan As hesap)
                Mydgv = plan
    
                Me.dgv = New System.Windows.Forms.DataGridView
                Me.SuspendLayout()
    
                Me.dgv.Location = New System.Drawing.Point(0, 0)
                Me.dgv.Margin = New System.Windows.Forms.Padding(0)
                Me.dgv.Name = "datagrid"
                Me.dgv.TabIndex = 0
                Me.dgv.Dock = DockStyle.Fill
                Me.dgv.AllowUserToAddRows = False
                Me.dgv.ReadOnly = True
                Me.dgv.AllowUserToDeleteRows = False
                Me.dgv.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing
                Me.dgv.AllowUserToResizeColumns = False
                Me.dgv.AllowUserToResizeRows = False
                Me.dgv.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells
                Me.dgv.RowHeadersWidth = 15
                Me.dgv.SelectionMode = DataGridViewSelectionMode.FullRowSelect
    
                Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
                Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
                Me.ClientSize = New System.Drawing.Size(450, 614)
                Me.ControlBox = True
                Me.Controls.Add(Me.dgv)
                Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable
                Me.MaximizeBox = True
                Me.MinimizeBox = True
                Me.Name = "HesapPlanı"
                'Me.ShowIcon = False
                Me.ShowInTaskbar = False
                Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
                Me.ResumeLayout(False)
            End Sub
            Private Sub hesapplani_Load(sender As Object, e As EventArgs) Handles Me.Load
                If baglanti.State = ConnectionState.Closed Then baglanti.Open()
                dategetir(dgv, "select kodu,adi from hesapplani")
                baglanti.Close()
    
            End Sub
            
            Public Sub secelim()
                Dim secelim As Integer = dgv.Rows(dgv.CurrentRow.Index).Cells(0).Value.ToString()
            End Sub
    
    
        End Class
    #End Region
        
    
    
       
        Private Sub MaskedTextBox1_GotFocus(sender As Object, e As EventArgs) Handles MaskedTextBox1.GotFocus
            MaskedTextBox1.Select(0, 1)
        End Sub
        Private Sub MaskedTextBox1_Resize(ByVal sender As Object, ByVal e As System.EventArgs) _
        Handles MaskedTextBox1.Resize
            Me.Height = MaskedTextBox1.Height
        End Sub
    
        Private hesaplar As hesapplani
    
        Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
            If hesaplar Is Nothing Then hesaplar = New hesapplani(Me)
            hesaplar.ShowDialog()
        End Sub
    
        Private Sub dgv_CellClick(sender As Object, e As DataGridViewCellEventArgs)
            Me.MaskedTextBox1.Text = hesaplar.secelim
        End Sub
    End Class

  7. #7

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    I have a usercontrol datagrid to create a form from there I added codes. paintings, so that is the name of an account at one hesapplani

  8. #8
    PowerPoster dunfiddlin's Avatar
    Join Date
    Jun 2012
    Posts
    8,245

    Re: Datagrid select error

    vb.net Code:
    1. Public Sub secelim()
    2.             Dim secelim As Integer = dgv.Rows(dgv.CurrentRow.Index).Cells(0).Value 'so now NOT .ToString()
    3.         End Sub

    vb.net Code:
    1. Private Sub dgv_CellClick(sender As Object, e As DataGridViewCellEventArgs)
    2.         Me.MaskedTextBox1.Text = hesaplar.secelim.ToString '.Text is always String, Integer is NOT String
    3.     End Sub

  9. #9

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    I'm sorry it did not. bridge the gap between problem-created account and the account plan

    Code:
    Imports System
    Imports System.Collections.Generic
    Imports System.ComponentModel
    Imports System.Drawing
    Imports System.Text
    Imports System.Windows.Forms
    Imports Microsoft.VisualBasic
    Public Class hesap
    #Region " text alan "
        Protected Overrides Sub OnResize(ByVal e As EventArgs)
            MyBase.OnResize(e)
            Me.Button1.Left = (Me.MaskedTextBox1.Width - Me.Button1.Width)
        End Sub
    #End Region
    
    
    #Region " Plan Tanıtım "
        Protected Class hesapplani
            Inherits System.Windows.Forms.Form
            Private Mydgv As hesap
            Private WithEvents dgv As System.Windows.Forms.DataGridView
    
            Public Sub New(ByRef plan As hesap)
                Mydgv = plan
    
                Me.dgv = New System.Windows.Forms.DataGridView
                Me.SuspendLayout()
    
                Me.dgv.Location = New System.Drawing.Point(0, 0)
                Me.dgv.Margin = New System.Windows.Forms.Padding(0)
                Me.dgv.Name = "datagrid"
                Me.dgv.TabIndex = 0
                Me.dgv.Dock = DockStyle.Fill
                Me.dgv.AllowUserToAddRows = False
                Me.dgv.ReadOnly = True
                Me.dgv.AllowUserToDeleteRows = False
                Me.dgv.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing
                Me.dgv.AllowUserToResizeColumns = False
                Me.dgv.AllowUserToResizeRows = False
                Me.dgv.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells
                Me.dgv.RowHeadersWidth = 15
                Me.dgv.SelectionMode = DataGridViewSelectionMode.FullRowSelect
    
                Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
                Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
                Me.ClientSize = New System.Drawing.Size(450, 614)
                Me.ControlBox = True
                Me.Controls.Add(Me.dgv)
                Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable
                Me.MaximizeBox = True
                Me.MinimizeBox = True
                Me.Name = "HesapPlanı"
                Me.Text = "Hesap Planı"
                'Me.ShowIcon = False
                Me.ShowInTaskbar = False
                Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
                Me.ResumeLayout(False)
            End Sub
            Private Sub hesapplani_Load(sender As Object, e As EventArgs) Handles Me.Load
                If baglanti.State = ConnectionState.Closed Then baglanti.Open()
                dategetir(dgv, "select kodu,adi from hesapplani")
                baglanti.Close()
    
            End Sub
            
            Private Sub dgv_CellClick(sender As Object, e As DataGridViewCellEventArgs) Handles dgv.Click
                hesap.MaskedTextBox1.Text = Me.dgv.Rows(Me.dgv.CurrentRow.Index).Cells(0).Value.ToString()
            End Sub
    
        End Class
    #End Region
    
       
        Private Sub MaskedTextBox1_GotFocus(sender As Object, e As EventArgs) Handles MaskedTextBox1.GotFocus
            MaskedTextBox1.Select(0, 1)
        End Sub
        Private Sub MaskedTextBox1_Resize(ByVal sender As Object, ByVal e As System.EventArgs) _
        Handles MaskedTextBox1.Resize
            Me.Height = MaskedTextBox1.Height
        End Sub
    
        Private hesaplar As hesapplani
    
        Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
            If hesaplar Is Nothing Then hesaplar = New hesapplani(Me)
            hesaplar.ShowDialog()
        End Sub
       
       
    End Class

  10. #10

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    Quote Originally Posted by dunfiddlin View Post
    hesap is in the field of
    vb.net Code:
    1. Public Sub secelim()
    2.             Dim secelim As Integer = dgv.Rows(dgv.CurrentRow.Index).Cells(0).Value 'so now NOT .ToString()
    3.         End Sub

    plan is in the field of

    vb.net Code:
    1. Private Sub dgv_CellClick(sender As Object, e As DataGridViewCellEventArgs)
    2.         Me.MaskedTextBox1.Text = hesaplar.secelim.ToString '.Text is always String, Integer is NOT String
    3.     End Sub
    need to be the exact opposite.

  11. #11

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    2012 to send the project, but I'm doing, etc.

  12. #12
    PowerPoster dunfiddlin's Avatar
    Join Date
    Jun 2012
    Posts
    8,245

    Re: Datagrid select error

    Quote Originally Posted by Black_Trouble View Post
    need to be the exact opposite.
    It can't be the exact opposite. Text is always string even when it's numbers!

    Public Sub secelim()
    Dim secelim As String = dgv.Rows(dgv.CurrentRow.Index).Cells(0).Value.ToString()
    End Sub

  13. #13

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    not again

  14. #14

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    I added the file. Can you take a look at

    lookup control.rar

  15. #15

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    wonder if the result does not

  16. #16
    Fanatic Member AceInfinity's Avatar
    Join Date
    May 2011
    Posts
    696

    Re: Datagrid select error

    Quote Originally Posted by Black_Trouble View Post
    has failed again

    Name:  Adsız.png
Views: 224
Size:  11.7 KB
    This, dgv isn't even a control on your Main form...

    Hover your mouse over the underlined regions and read the errors, otherwise open your error window and see what they say. This dgv_CellMouseClick isn't even Handling an event.
    <<<------------
    Improving Managed Code Performance | .NET Application Performance
    < Please if this helped you out. Any kind of thanks is gladly appreciated >


    .NET Programming (2012 - 2018)
    ®Crestron - DMC-T Certified Programmer | Software Developer
    <<<------------

  17. #17

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    yes an event on the control. translated using English is not good. better placed to describe the sample. Can you help out the sample project.

  18. #18
    Fanatic Member AceInfinity's Avatar
    Join Date
    May 2011
    Posts
    696

    Re: Datagrid select error

    Quote Originally Posted by Black_Trouble View Post
    yes an event on the control. translated using English is not good. better placed to describe the sample. Can you help out the sample project.
    I don't download projects from unknown sources, but I help on the individual code aspect of things. What does your errors window say? Copy them out and post them in your next reply, i'll show you what they mean.
    <<<------------
    Improving Managed Code Performance | .NET Application Performance
    < Please if this helped you out. Any kind of thanks is gladly appreciated >


    .NET Programming (2012 - 2018)
    ®Crestron - DMC-T Certified Programmer | Software Developer
    <<<------------

  19. #19

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    ERROR
    Reference to a shared member requires an object reference.

    Code:
    
    Imports System
    Imports System.Collections.Generic
    Imports System.ComponentModel
    Imports System.Drawing
    Imports System.Text
    Imports System.Windows.Forms
    Imports Microsoft.VisualBasic
    Public Class hesap
    #Region " text alan "
        Protected Overrides Sub OnResize(ByVal e As EventArgs)
            MyBase.OnResize(e)
            Me.Button1.Left = (Me.MaskedTextBox1.Width - Me.Button1.Width)
        End Sub
    #End Region
    
    
    #Region " Plan Tanıtım "
        Protected Class hesapplani
            Inherits System.Windows.Forms.Form
            Private Mydgv As hesap
            Private WithEvents dgv As System.Windows.Forms.DataGridView
    
            Public Sub New(ByRef plan As hesap)
                Mydgv = plan
    
                Me.dgv = New System.Windows.Forms.DataGridView
                Me.SuspendLayout()
    
                Me.dgv.Location = New System.Drawing.Point(0, 0)
                Me.dgv.Margin = New System.Windows.Forms.Padding(0)
                Me.dgv.Name = "datagrid"
                Me.dgv.TabIndex = 0
                Me.dgv.Dock = DockStyle.Fill
                Me.dgv.AllowUserToAddRows = False
                Me.dgv.ReadOnly = True
                Me.dgv.AllowUserToDeleteRows = False
                Me.dgv.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing
                Me.dgv.AllowUserToResizeColumns = False
                Me.dgv.AllowUserToResizeRows = False
                Me.dgv.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells
                Me.dgv.RowHeadersWidth = 15
                Me.dgv.SelectionMode = DataGridViewSelectionMode.FullRowSelect
    
                Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
                Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
                Me.ClientSize = New System.Drawing.Size(450, 614)
                Me.ControlBox = True
                Me.Controls.Add(Me.dgv)
                Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable
                Me.MaximizeBox = True
                Me.MinimizeBox = True
                Me.Name = "HesapPlanı"
                Me.Text = "Hesap Planı"
                'Me.ShowIcon = False
                Me.ShowInTaskbar = False
                Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
                Me.ResumeLayout(False)
            End Sub
            Private Sub hesapplani_Load(sender As Object, e As EventArgs) Handles Me.Load
                If baglanti.State = ConnectionState.Closed Then baglanti.Open()
                dategetir(dgv, "select kodu,adi from hesapplani")
                baglanti.Close()
    
            End Sub
            
           
    
            Private Sub dgv_CellClick(sender As Object, e As DataGridViewCellEventArgs) Handles dgv.Click
                hesap.MaskedTextBox1.Text = dgv.Rows(dgv.CurrentRow.Index).Cells(0).Value.ToString()
            End Sub
        End Class
    #End Region
        
        Private Sub MaskedTextBox1_GotFocus(sender As Object, e As EventArgs) Handles MaskedTextBox1.GotFocus
            MaskedTextBox1.Select(0, 1)
        End Sub
        Private Sub MaskedTextBox1_Resize(ByVal sender As Object, ByVal e As System.EventArgs) _
        Handles MaskedTextBox1.Resize
            Me.Height = MaskedTextBox1.Height
        End Sub
    
        Private hesaplar As hesapplani
    
        Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    
            If hesaplar Is Nothing Then hesaplar = New hesapplani(Me)
    
            hesaplar.ShowDialog()
        End Sub
    
        
    End Class
    Last edited by Black_Trouble; Aug 19th, 2012 at 04:02 PM.

  20. #20
    Fanatic Member AceInfinity's Avatar
    Join Date
    May 2011
    Posts
    696

    Re: Datagrid select error

    Since your class hesapplani is Interiting a form, and drawing a DataGridView on it from what it looks like, you need to reference the instance of hesapplani to access the datagridview control on that form.
    <<<------------
    Improving Managed Code Performance | .NET Application Performance
    < Please if this helped you out. Any kind of thanks is gladly appreciated >


    .NET Programming (2012 - 2018)
    ®Crestron - DMC-T Certified Programmer | Software Developer
    <<<------------

  21. #21

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    I wanted to do this event. selected MaskedTextBox future. To do this I created the usercontrol.

    Name:  Adsız.png
Views: 160
Size:  57.9 KB

  22. #22

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    Quote Originally Posted by AceInfinity View Post
    Since your class hesapplani is Interiting a form, and drawing a DataGridView on it from what it looks like, you need to reference the instance of hesapplani to access the datagridview control on that form.

    How do I make my teacher trying to make it up and down for a month. I did not get an answer from anyone.

  23. #23
    Fanatic Member AceInfinity's Avatar
    Join Date
    May 2011
    Posts
    696

    Re: Datagrid select error

    Quote Originally Posted by Black_Trouble View Post
    How do I make my teacher trying to make it up and down for a month. I did not get an answer from anyone.
    Up down for a month? I'm confused.

    I think the reason why you haven't been getting much help is not really your fault. It's more likely because people are having a hard time understanding what you want to do exactly through what you've been explaining thus far in this thread. I know for myself, that i'm having this particular issue right now as well, if others haven't already.

    If you know what you want to do (I hope you do anyways lol), then as I've said, it's just as simple as using that instance to access the controls on that form to do stuff with them.

    Example:
    Code:
    Dim frm1 As New Form1()
    We don't use Form1 to access the controls, we use frm1 instead because it is the INSTANCE of Form1, not the Class Form1. Same principle with hesapplani.
    <<<------------
    Improving Managed Code Performance | .NET Application Performance
    < Please if this helped you out. Any kind of thanks is gladly appreciated >


    .NET Programming (2012 - 2018)
    ®Crestron - DMC-T Certified Programmer | Software Developer
    <<<------------

  24. #24

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    I called many of the answer in the forum but no one answered. I do not understand where you need to attach this code to write. teacher if you can control from start to finish so that he can not tell you how grateful I'm going. I just started vb.net counted. but it's never been so helpless.

  25. #25

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    still not found a solution. Do not have anyone that can help

  26. #26

    Thread Starter
    Lively Member Black_Trouble's Avatar
    Join Date
    Feb 2012
    Posts
    94

    Re: Datagrid select error

    he looked up to people, but found a solution.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width