Tagged Questions
0
votes
1answer
57 views
binding SQL data to extract columns
From my ASP.NET c# application, I want to run a SQL query and store all the column values so that I can use them in my application.
For example,
select name, age, phone, address, work from UserInfo
...
0
votes
1answer
462 views
WPF datagrid hide column with dynamic datasource
I'm binding a datagrid to a DataView. I would like to hide the ID column when the data is displayed. The ID column needs to exist in the data as it is used in another part of my code.
The ID column ...
1
vote
2answers
450 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));
...
3
votes
1answer
391 views
WPF datagrid refreshes on it's own when it's not supposed to
I feel like I'm missing something here, but I have this datagrid which when the datasource changes, automatically redraws it self with no logical reason for it doing so.
I have the datagrid bound to ...
0
votes
1answer
804 views
Binding Infragistics UltraChart (lineplot) to DataView
I'm trying to bind a DataView to NumericTimeSeries through its NumericTimeSeriesDataAppearance instance, but the series end up having zero points. I'm testing using the following code:
DataTable ...
0
votes
1answer
674 views
Databinding in .NET - Datatables, Dataviews and BindingSources
When binding to datatables in visual studio, it sets the datasource of a bindingsource to the selected datatable - which is fine and is what is expected. However, the datasource is actually pointing ...
0
votes
1answer
2k views
Telerik RadGrid bound to web service without Linq
I want to bind a Telerik RadGrid to a web service without using Linq. In all examples I can find, the web service has to return a List(Of MyObject); I've tried this, and it works great. However, the ...
1
vote
1answer
385 views
Problem with DataView Sort
I am trying to fetch data from DB and loading the DB with the values fetched. Later I am sorting the Data in the Table based on Name, then I want to bind it with a CheckedListBox
However, when I am ...
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");
...
1
vote
1answer
1k views
.Net DataView and DataTable Binding
I have a simple Windows Forms application which binds a DataView to a ListBox. This DataView uses Linq to sort my DataTable by a specific column descending. My ListBox is then bound to the DataView. I ...
1
vote
1answer
185 views
What is the .NET DataTable best usecase?
I have three Tables
Customers, Jobs, Orders
I Also have these tables in the a DataSet, which conforms to the same constraints as those in the Database itself.
Originally, my intention was to keep ...
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 ...