0
votes
2answers
29 views
How can i do select multiple rows ( allowMultipleSelection=”true” ) in datagrid using flex ?
I have id(array) used in my application . i want to select number of rows mathching given array but if i used gatagrid selected Index then it will be selected only one row only . i …
0
votes
1answer
37 views
Sorting a DataGridView by Number or Date in a Windows Form C#
I have a DataGridView on a C# Forms Application I'm trying to sort.
Originally I wanted to sort by the date, but when sorting it treats it like a string.
Example:
22/9/2009
14/4/ …
1
vote
0answers
30 views
+100
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 …
0
votes
2answers
19 views
WPF - datagridview options
Hi all,
Need to represent a two column table. Maybe just for reference at this stage - or with the functionality that a double click presents a combobox essentially on that field …
0
votes
5answers
85 views
Getting blank rows after setting DataGridView.DataSource. How to solve this problem?
Hello,
Could somebody tell me why I'm getting blank rows after runnign this code??
...
dataGridView.AutoGenerateColumns = false; //must be false, else getting additional coulumns …
2
votes
2answers
67 views
vb.net dataTable/DataGridView search/sort
So I have a dataGridView and a textbox on a form. I want to be able to search through the dataGridView and sort it compared to the string in the text box. ex:
I type "acv" in the …
0
votes
2answers
14 views
WPF DataGrid CellEditingTemplate with floating control
Hello,
I'm using the WPF DataGrid and want to make my own CellEditingTemplate. I want to replicate something like the DatePicker that doesn't replace the whole contents of the cell …
1
vote
3answers
50 views
DataGridView: Pass by Value or Reference?
I think of DataGridView's as being memory hogs. Is it better to pass by value a datagridview or by reference? Should it even be passed at all?
0
votes
1answer
37 views
Preserve DataGridViewRow.Tag property in databound DGV when sorting data
Is there a way to keep the tags from being nulled as soon as I sort the grid?
If not, is the Tag property actually useful for anything except non-databound usage?
0
votes
3answers
49 views
How do I specify what the column type a DataGridView chooses to use when using DataTable as its DataSource
I have a column in my DGV that is a custom type to display values of MyObjectType. My DataTable has the column created as MyObjectType, but the DGV creates a DataGridViewTextBox c …
0
votes
2answers
33 views
DataGridView / Enter Key ?
I'm using vb.net 2008 and DataGridView. I'm looking for code that will allow me to have the Enter key move to the next column to the right instead of moving down one row while rema …
0
votes
2answers
56 views
DataGridView inserts primary key
I'm trying to get a basic DataGridView to insert new rows into a table. The table has an auto incrementing primary key (Identity 1,1) I'm having two problems with this.
The first …
0
votes
1answer
32 views
Disable Cell Highlighting in a datagridview
How to disable Cell Highlighting in a datagridview,
Highlighting should not happen even if I click on the cell.
Any thoughts please
0
votes
2answers
43 views
DataGridView and Combobox Column?
when DataGridView has a combobox column, how can I get the text it displays as oppose to the value it represents? When I do DGV.Item("cbo",i).Value I get the value but it won't tak …
0
votes
1answer
98 views
C# Update and Delete row table using tableAdapter, mdb access, dataGridView
I have a DataGridView, which loads data from mdb Access table
The grid only shows data (is readonly). I have a button for inserting new row, and now have to make two more buttons, …
