Avatar of Zbiebu
Zbiebu
 asked on

Stop column in DataGridView from displaying

 Try
            connection.Open()
            adapter = New SqlDataAdapter(sql, connection)
            adapter.Fill(ds)
            ds.Locale = System.Globalization.CultureInfo.InvariantCulture
            connection.Close()
            DGVListAll.DataSource = ds.Tables(0)

        Catch ex As Exception
            MsgBox(ex.ToString)

        End Try

        'Set the DataGridView properties to bind it to the data
        Me.DGVListAll.AutoResizeColumn(DataGridViewAutoSizeColumnsMode.AllCells)
        'DGVListAll.AutoGenerateColumns = True
        Me.DGVListAll.Columns("Date").DefaultCellStyle.Format = "dd/MM/yyyy"
        Me.DGVListAll.Columns("VDate").DefaultCellStyle.Format = "dd/MM/yyyy"

        'Declare and set the currency header alignment property
        Dim objAlignRightCellStyle As New DataGridViewCellStyle
        objAlignRightCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter

        'Declare and set the alternating rows style
        Dim objAlternatingCellStyle As New DataGridViewCellStyle()
        objAlternatingCellStyle.BackColor = Color.WhiteSmoke
        DGVListAll.AlternatingRowsDefaultCellStyle = objAlternatingCellStyle

        'Bind Link column
        Dim linkColumn As DataGridViewLinkColumn = New DataGridViewLinkColumn()
        linkColumn.DataPropertyName = "Link"
        linkColumn.HeaderText = "Link"
        DGVListAll.Columns.Add(linkColumn)

Open in new window


Hi,
I use the code above to display a DataGridView column text as a hyperlink.  This works fine but it still dispays the original column. So I have 1 'Links' column that is normal text and the other as hyperlink. How can I stop the original text column from displaying.
Thanks
Visual Basic.NET

Avatar of undefined
Last Comment
Zbiebu

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Nasir Razzaq

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Zbiebu

ASKER
That's great, thanks.
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes