Questions tagged [datagridviewlinkcolumn]

The DataGridViewLinkColumn is a DataGridViewColumn implementation for Button cells

19 questions
3
votes
1 answer

How to disable a checkbox column on clicking of another checkbox column in DatagridView

I have two ckecboxes (Error and Enable) as under If I uncheck "Enable" checkbox, the corrresponding "Error" checkbox will become greyed out. I tried like the below but there is no enable or disable property void…
priyanka.sarkar
  • 25,766
  • 43
  • 127
  • 173
2
votes
2 answers

SelectionForeColor not working for link cells in DataGridViewLinkColumn of DataGridView

In my Winform 4.5 app, I have a DataGridView with first column as a link column. I would like to have the link color of the selected link cell to be white. Since by default the background color of a selected row (or a cell) is blue and the ForeColor…
nam
  • 21,967
  • 37
  • 158
  • 332
2
votes
1 answer

How make a DataGridVewLinkColumn sort with the rest of the DataGridView

I populated a DataGridView with a DataTable as DataSource. This DataSource has a column with comments in it. I hide this column as part of the requirements and added a new DataGridVewLinkColumn that when is clicked the user will be able to see that…
user3223834
  • 59
  • 1
  • 1
  • 9
2
votes
1 answer

HOW TO: Change datagridview LinkColumn Text when clicked

I'm having a problem in my DataGridViewLinkColumn. When specific columnIndex clicked, I want to change the link column text. (please see example below) In example above, I want to change the text(the highlighted one) that is clicked to SAVE. NOTE:…
rayncorg
  • 963
  • 4
  • 16
  • 33
1
vote
1 answer

Launching hyperlink from DataGridViewLinkCell

I'm loading a DataSet into a DataGridView. The data is a hyperlink to a file on the local network but I can't get the link to actually launch the file. Do I have to go into the clickevent and actually launch it from there? Or is there a property I…
tmwoods
  • 2,353
  • 7
  • 28
  • 55
1
vote
1 answer

c# datagridview with a column type hyperlink after db read in winform

i have this scenario : after query i have this table in DataSet : Name | Module | Date | Approvation xx | xxx | xxx | xxxxxxxx yy | yyy | yyy | yyyyyyyyy DataTable dt = new DataTable(); // dgvApprovazione is a…
rul3z
  • 173
  • 1
  • 16
1
vote
1 answer

Show Row Index in cells of a Column in DataGridView

I need to show an auto increment value in cells of a column in DataGridView. The type of column is DataGridViewLinkColumn and the grid should be like this: | Column X | Column Y | ----------------------- | 1 | ........ | | 2 | ........…
1
vote
1 answer

DataGridViewLinkColumn formatting

My Application is a windows form application in VB. I have DataGridView in my Application. The seventh column is defined as DataGridViewLinkColumn when i designed the DataGridView. My Application reads the link from a table and Grid properly…
1
vote
2 answers

Trying to create an APEX Link Column that queries a report

Basically, say I have a report A and I want to add a link column to it, and I set its target to a page in the application...the page its referring to has another report (lets call it B) Is it possible for me to somehow make it so that table A's link…
0
votes
1 answer

why DataGridViewLinkColum doesn't show any of the data property in vb.net

why DataGridViewLinkColum doesn't show any of the data properties in vb.net?. Is there something wrong with my code?. Please guide is there any solution so it can appear in datagridview? Thanks Private Sub BindItemDetail() If…
roy
  • 693
  • 2
  • 11
0
votes
0 answers

How to Insert LinkLabel into DataGridViewCell C#

Trying to find a way to create a DataGridViewCell that supports multiple links, like this: Multiple Links in a GridView Example I know this has been asked a thousand times (I've spent a day combing through them), but please hear me out. I would like…
0
votes
1 answer

Winform DataGridViewLinkColumn ReadOnly property not working

In my VS2015 Winform app, there is one DataGridView control bound to a BindingSource that is bound to a SQL database. The Grid has four columns: ID, URL, Name, Type. The URL column is DataGridViewLinkColumn whose ReadOnly property, by default, is…
nam
  • 21,967
  • 37
  • 158
  • 332
0
votes
1 answer

Convert a DataGridViewColumn in DatagridViewLinkColumn

I have a DataGridView that shows 3 columns, but I want to convert the values of one of these columns in link texts. I populate my DataGridView as follow: DataGridViewSearchReport.DataSource = queryResDT queryResDT is a DataTable from a SQL query
0
votes
2 answers

Using a DataGridView to display the contents of a DataTable

I have a three-column DataTable that contains data that I need to use in various ways. The data in this DataTable comes from an Exchange Web Services call. The first column contains a row counter, the second contains the calendar name, and the third…
rianjs
  • 7,767
  • 5
  • 24
  • 40
0
votes
1 answer

c# DataGridViewLinkColumn have cell value as image instead of text (Clickable/Linkable Image)

Is is possible to have a image instead of text in the DataGridViewLinkColumn. In the below example, instead of "search" text, can we have a search icon in the cell!? private void Form1_Load(object sender, EventArgs e) { …
Akaanthan Ccoder
  • 2,159
  • 5
  • 21
  • 37
1
2