0
votes
2answers
44 views

value member in textbox and display member in combobox

i have a textbox and combobox and a datatable (fill from database) datatable has two columns one is id and other is name the combobox is bind with this datatable like Form1.ComboBox1.DataSource = dt ...
0
votes
0answers
16 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
139 views

DataView RowFilter determine if a DateTime column is greater than another DateTime column plus 6 months

I have a dataview which has two columns. A and B each column has a date in it of type DateTime. I would like to filter the dataview to only show rows where dates in A are greater than dates in B plus ...
-2
votes
1answer
226 views

How Can Convert DataRow to DataRowView in c#

Can or how to convert DataRow to DataRowView? For example: DataTable dt=ds.Tables[0]; DataRow dr= dt.NewRow(); DataRowView drv = ????
0
votes
0answers
151 views

selecting columns in dataview

I am creating a dynamic dataview with GIS information to create mailing labels from GIS. My current code will grab GIS information and create a dataview. I have succeeded in getting a dataview to ...
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 ...
1
vote
2answers
453 views

Two BindingSource objects with same DataSource property

I have some difficulties with understanding BindingSource's behaviour. Let's look at following example: Creating table DataTable dt = new DataTable(); dt.Columns.Add("id", typeof(int)); ...
0
votes
1answer
106 views

Issues in Visual C# 2005 finding and selecting a Row in Dataview to be highlight

I have a data table filled with various rows, each has several columns(ie ID, name, Description..) I am trying to implement a search button where a user chooses a column via a combo box, such as ID ...
0
votes
2answers
397 views

Sort data using DataView

I have a DataGridView with column Remarks (Passed, Failed). For example, I want to show all the records Failed in the column Remarks using DataView, how do I do that? Thank you. Here's the code I'm ...
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 ...
0
votes
1answer
382 views

Search a single record using DataView in C#

I'm doing a custom report using WinForms in C#. StudentID is set as primary key, and when the user inputs the student ID in the search box above, i want to display the student's data in one row ...
1
vote
2answers
81 views

Binding a data source but displaying something else

I have quite a few places where I need to bind form controls directly to a backing database. I'm using LINQ to DataSet to do this. For example, I have a ComboBox with entries filled in by a database ...
1
vote
2answers
779 views

how to bind dataview to the treeview?

I'm having a dataview which is collection of id & name. And i want to bind that dataview to the treeview control in the form of hirarchy. And i want to show the name field as the display text on ...
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 ...
1
vote
0answers
770 views

DataView NullReferenceException in OnListChanged

I have a fairly complex WinForms app that uses data binding to tie strongly typed DataTables to controls (not sure if this fact matters here). An exception gets raised when a change to a column ...
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 ...