0
votes
0answers
15 views

Selecting a row from a datagridview using unique cell reference

Afternoon all, Background: I am displaying the results of a sql query in a DataGridView, when the user clicks on the row, more information is displayed in the form. The user can then edit various ...
0
votes
1answer
42 views

Using Dataview with a MySQL populated DataGridView

I've taken over some code that I'm a bit unfamiliar with. We were using an access data source to populate a DGV. I just changed it to fill the DGV from MySQL. Here's a snip it of code from the ...
0
votes
0answers
195 views

RowFilter not applied to newly added rows in C#

I have a DataGridView and I've set it's DataSource to be the DefaultView of a DataTable dataGridView1.DataSource = table.DefaultView; I then apply a filter on the datasource ...
1
vote
0answers
644 views

Using DataView with DataGridView breaks connection with BindingNavigator

Having trouble with a form with both a Datagridview control and a BindingNavigator control. Initially I had the following code: BS = New BindingSource(DS, dsTable) ' (earlier code) Dim BS as New ...
0
votes
1answer
795 views

DataView RowFilter is not giving proper results

I am using Data Grid View to show 1000 Rows and 800 Columns of Data (only one character per cell). There is a Check Box column also. I have added a context menu item like "View Selected Cells". On ...
0
votes
1answer
613 views

Update DataGridView with dataview

I have a VB.NET 2010 application that loads data from SQL Server to a datagridview through adapter.fill(). When I update the database it works fine but my problem is that when i use the dataview to ...
1
vote
1answer
365 views

How to update only one row in DataView from SQL database?

I have a situation where I have a grid loaded with data. It is not data bound. Clicking an image opens up another form that allows the change of the data in the grid. Right now the changed data (1 ...
0
votes
2answers
230 views

How do I represent the special values for Double (Pos/Neg Infinity, NaN) in a DataView.RowFilter expression?

I have a special row that contains the sum of the other rows. It always comes first in a sort but I need to be able to keep it in a RowFilter expression. The only column I have to indicate that this ...
0
votes
1answer
491 views

about update data on datagridview and filter

i'm getting confuse about dataset and dataview, which i either use dataset to update data or dataview to filter data, but cannot have both together at the same time. Private Sub ...
-1
votes
1answer
1k views

I would like filter DataGridView by DataView

I tried the code below, but it does not work. What's wrong? private void textBox1_TextChanged(object sender, EventArgs e) { // DataView component DataView view = new DataView(); ...
0
votes
1answer
193 views

Retrieve several records using DataView

I want to retrieve records in a DataGridView using a DataView. For example, I want to retrieve records of students whose age is between 15 to 18. How do I do that? Below is my code for retrieving a ...
1
vote
2answers
1k views

Populate a DataGridView with a DataView

I would like to fill in my DataGridView with a DataView that we can assume already contains data. I have been searching for a way to do this but all the solutions involve other data structures than a ...
1
vote
0answers
1k views

DataGridView Custom Sorting With Datasource

In my C# .NET application, I have a DataGridView. The grid's DataSource is a BindingSource, and the BindSource is bound to a filtered DataView of a DataTable that is requeried from SQL frequently. ...
0
votes
1answer
2k views

how can I add a custom non-DataTable column to my DataView, in a winforms ADO.net application?

How could I (/is it possible) to add a custom column to my DataView, and in this column display the result of a specific calculation. That is, I currently have a dataGridView which has a binding to a ...
2
votes
4answers
10k views

How to bind dataGridView predefined columns with columns from sql statement (without adding new columns)?

Is there a elegant way, to bind predefined dataGridView columns with results from sql statement? Example: dataGridView1.Columns.Add("EID", "ID"); dataGridView1.Columns.Add("FName", "FirstName"); ...
15
votes
5answers
12k views

C#: Custom sort of DataGridView

I need to sort a DataGridView with Natural Sorting (Like in Explorer) so that numbers and text (in the same column) are sorted naturally, and not alphabetically (so that "place 3" comes before "place ...
0
votes
2answers
518 views

Viewing selected columns

I'm doing .NET 3.5 programming in VB for a class. I have a .mdb database with 3 related tables, and a table adapter with some queries on it that look like this: SELECT PropertyID, Street, Unit, ...
0
votes
3answers
15k views

How to set selected row of DataGridView to newly-added row when the grid is bound to sorted DataView?

I have a DataGridView bound to a DataView. The grid can be sorted by the user on any column. I add a row to the grid by calling NewRow on the DataView's underlying DataTable, then adding it to the ...