Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
4k views

How to switch between DataGridViewTextBoxCell and DataGridViewComboBoxCell?

I want to have a DataGridView that has two columns. The first column will always be of type DataGridViewComboBoxColumn. Based on the selection in that column, I'd like to be able to change the ...
2
votes
2answers
84 views

DataGridView Events

I need to perform a task whenever the user ordinarily ends edit mode (no matter if the user actually modified the value or not; but not when the user cancels edit mode by pressing ESC) in a TextBox ...
2
votes
2answers
1k views

How to prevent going to next row after editing a DataGridViewTextBoxColumn and pressing EnterKey?

I'm working on a program with DataGridViews. In one DatagridView there is a DataGridViewTextBoxColumn, which is enabled to be edited by the user. When the user is done with typing the numbers into ...
2
votes
2answers
533 views

How can I make the DataGridViewTextBoxColumn wrap to a new line if its text is too long?

My question is simple, but I can not think of an easy solution. Lets say I have a DataGridViewTextBoxColumn. How can I make it break text into several lines if it is too long to be shown in one line?
2
votes
2answers
780 views

DataGridView Cell Editing issue with decimal/hexadecimal formatting

I have a DataGridView bound to a DataTable that has 1+16 columns defined as Integer. The default cell style is hexadecimal 2 digits (.Format="X2"). When entering in cell editing I would like to ...
1
vote
1answer
85 views

Add Control object into DataGridViewTextBoxCell

I have a class that is deriveded from DataGridViewTextBoxCell and I want to add an Form.Control object (like TextBox, CheckBox ..) into that cell but there is no control object that I can add new one ...
1
vote
1answer
444 views

masked Textbox control in datagridview

I have TextboxColumn in Datagridview.usually editing and entering text in this control is cumbersome.I want to make entering text in this control easy.I want following functionality. Better ...
1
vote
2answers
475 views

Can a DataGridView cell be instructed to mask entered characters with an asterisk?

Is there a way to replace the characters entered in a cell of a DataGridView with an asterisk while entering them? If so, how can I do this? Any help is appreciated.
1
vote
1answer
242 views

Display related data in a datagridviewtextboxcolumn

I have a datagridview bound to a bindingsource. Two of the columns contain values that link to the primary keys in other tables. Instead of displaying the primary key values, I would like to display ...
1
vote
1answer
133 views

Stop text from being highlighted/overwritten in a DataGridViewTextBoxCell

I am developing a Windows Forms application that uses a DataGridView for a user to enter some data. The user enters the data into a DataGridViewTextBoxCell. This works fine, however if the user wants ...
1
vote
2answers
3k views

How to set DataGridView columns text format to uppercase by adding new property?

I have a custom DataGridView control and want to set the text format for custom columns in the designer (CellStyle builder). Let's say I want to make the text format to uppercase. After searching ...
0
votes
1answer
50 views

how to get the editing control of datagridview/datagridviewcell?

I have a datagridviewcell with textbox as the control hosted by it. Now how do I get the type of control programmatically in other parts of my code? I add the column like this: ...
0
votes
1answer
205 views

vb.net DataGridview show custom ContextMenuStrip on cell that is being edited

I'm trying to show a custom contextmenustrip on my datagridview and it works fine except when the cell is being being edited. Then it shows the default windows contextmenustrip with copy/cut/... Is ...
0
votes
1answer
326 views

Determining if Text in Particular DataGridView Cell is Wrapping

I have a databound datagridview on a form that has a text column that is able to be wrapped. When the columns are refreshed the height of each row is reverted to a single line height even if the ...
0
votes
1answer
138 views

Datagridview cell forecolor question (winform)

I have a requirement to display a text in various colors within a datagridview cell. I mean, within one same cell, I need to use several colors ! Which color is to be applied depends on the value of ...
0
votes
1answer
390 views

Overriding DataGridViewTextBoxCell and CellPainting

I inherited DataGridViewTextBoxCell because I need to add some custom property to it. At run-time after creating the DataGridView instance and bind the data I do the following: For k As Integer = 0 ...
0
votes
1answer
268 views

Get all the values of a dataGridTextboxColumn

I have a dataGridView that has a column called Date Due which is of type System.DataTime. I want to put these dates in a monthCalendar. Do I have to iterate throught the column? Do I have to cast it?