Tagged Questions
0
votes
0answers
8 views
Load data from gridview to datatable
I am trying to load data from my GridView to DataTable. I actually added the picture of my grid below. I want to mimic my datatable just like the GridView. Can someone please help me with the code?
...
4
votes
1answer
63 views
Trouble Sorting a DATE column in DataTable/DataView in C#
I am trying to Sort a DataView in C#. It seems the Sort method of DataView Class takes the dates as strings.
In the output am getting this -
5/9/2013 4:56:38 PM
5/8/2013 4:23:06 PM
5/8/2013 1:38:21 ...
0
votes
2answers
45 views
vb.net dataview populated by sql
I'm trying to load the data from an sql query into a datatable which will load a GridView. See code below...
Dim dv As New System.Data.DataView
Dim dt As New System.Data.DataTable
dv = ...
0
votes
0answers
37 views
Using LINQ to create a datatable from another datatable
I have a datatable that is created from a webservice that can only look at one row at a time. The datatable is called TicketTable with two columns WorkDate and Hours. I need to create a datasource ...
1
vote
1answer
97 views
How can I avoid a KeyNotFoundException in DataView.ToTable()?
I am working on a legacy ASP.NET code base that has some information stored in cache (via Enterprise Library) inside DataTable objects. It is a multiple user, intranet environment, running in .NET ...
0
votes
3answers
81 views
Adding header rows to Gridview
My gridview is similar to this:
12- CategoryA - other columns
13- CategoryA - other columns
14- CategoryA - other columns
15- CategoryA - other columns
16- CategoryB - other columns
17- CategoryB - ...
0
votes
1answer
56 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
...
1
vote
1answer
129 views
defaultview.sort ignoring the last row in the defaultview
I created a table, created a dataview, and sorted the dataview. I then populated the table with three rows of data and all was good. I then changed one of the fields (Hours) in one of the rows which ...
0
votes
1answer
34 views
Modifying DataView thread safety
I am parallelizing some of my code, and in this section, I have DataViews accessing a common DataTable. There are places where I modify the DataViews, but in necessarily discrete records among the ...
1
vote
4answers
292 views
How to pull a SQL Server table into memory in order to run queries against it
I'm running > 50K simple selects on a table in sql server and I'd really like to speed it up. I've read that you can pull the data into memory and use something like a dataview to query against.
Is ...
0
votes
2answers
118 views
c# all distincts value from datatable
I've found this piece of code that can be used to get all distinct values. But my datatable has 10 columns. The distinctValues only shows the columns I write in the toTable(); Is it possible to use ...
0
votes
0answers
59 views
Add new row to DataView and keep existing sorting?
I have an existing DataView, extracted from a DataTable. Sometimes I need to add a new row to that DataView, but I need that row to be added not at the end of the row set, but so that it follows the ...
0
votes
0answers
50 views
DataView settings are lost after WriteXML
So, the thing is, i set the sorting of the datatable in the dataview, ok, the sorted table is contained in the dataview, so far all right, I later used the datable and the dataview to get the sorted ...
0
votes
1answer
161 views
making rows distinct and showing all the columns
In my project there are two datatables dtFail and dtFailed (dtFailed has nothing but column names declarations). dtFail has duplicate "EmployeeName" column values. so i took a dataview dvFail and did ...
0
votes
0answers
344 views
Binding DataGrid to DataView of DataTable doesn't update new columns
I have a DataTable that I create rows and columns for from another part of the program. I bind the default DataView of this DataTable to a DataGrid. I update my DataTable in the following format:
1: ...
0
votes
2answers
488 views
sort DataTable on one column independent of other columns
I create a two column DataTable (id, name):
DataTable table = new DataTable();
DataColumn id = table.Columns.Add("id", typeof(int));
id.AutoIncrement = true;
...
0
votes
1answer
231 views
DataTable DataView - Bit Value in Database
I have read a database table into a DataTable in my C# program, but I am having a few issues assigning the column which contains a bit value to a Boolean.
Here is my code so far:
// Load ...
0
votes
1answer
183 views
Sorting Gridview in Visual Basic
I am trying to sort a gridview in visual basic using the following method, however the second line of code (Dim dv as DataView...) throws a NullReferenceException. When I debug the code and step ...
0
votes
0answers
223 views
LINQ DataView Refresh
I am attempting to perform a filter amongst two related DataTables using LINQ. My query retrieves all parent rows having a child record of a specific type. Every time the user provides different type ...
1
vote
1answer
974 views
DataView not Sorting properly after DataTable GroupBy
I am currently getting data from SQL Server and storing in a DataTable. I am applying GroupBy operation on that DataTable in order to display the table in various forms in DataGrid. After making into ...
0
votes
1answer
180 views
Function does not read last value
I am developing a program for a chain of restaurants, they should normally be able to calculate their guestcount and sales through a vb.net application with a connection to dbf files.
My dataset gets ...
1
vote
0answers
197 views
How to sort a DataView?
i am trying to sort a DataSet as desired:
protected void GridView1_Sorting1(object sender, GridViewSortEventArgs e)
{
DataSet data = (DataSet)GridView1.DataSource;
//sort data by ...
3
votes
2answers
2k views
Dynamic tooltip depending on mouse over on a row in a datagrid(NOT datagridview)
I am trying to make it so that when the user mouses over a row in my DataGrid / dataview, each row would display a different tooltip outcome.
I cannot really figure this out. with DataGrid how can I ...
0
votes
1answer
105 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
447 views
WPF DataGrid custom sort: reorder items in ItemsSource
I have my custom grid which inherits from DataGrid (from WPFToolkit) that has around 10000 items in it. The built-in sort is very slow. As such I have written a separate class that keeps a running ...
1
vote
1answer
107 views
LINQ Select Modified Version From Datatable
Can you please provide me with a sample syntax for it?
Something like this?
var qry = (ds.table.Select(s => s.col, string.Empty, DataViewRowState.ModifiedCurrent));
thanks
0
votes
1answer
514 views
Dynamically adding rows to an index of a DataView
I have an interesting issue with inserting rows of data into a dataview. I receive a set of data from the database. This information is grouped. There are three levels from this data set. For example:
...
0
votes
3answers
1k views
Add Rowfilter condition for DateTime Year only check
I am trying to use a DataView.RowFilter in order to filter all entries that do not belong in a specified year. My code is as follows:
bigDT.DefaultView.RowFilter = "year(date_posted)=2011";
This ...
0
votes
2answers
228 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
2answers
509 views
combined primary key search in DataTable
I am new to C#.net.I want a simple solution for my problem.
I have a datatable with three fields used as a PRIMARY KEY**(ITEM_CODE,WAREHOUSE_CODE,LOTNO)**.
I want to get the row index of the row that ...
1
vote
2answers
530 views
Efficient way to get unique records from datatable
I have a DataTable with multiple columns including AccountNumber, Year, and Month. I am exporting the information in this table to an Excel workbook. Since this table has the potential to be extremely ...
1
vote
1answer
1k views
How to find the original position in a DataTable from a filtered DataView
I want to find a particular ID in a DataTable, I am using a DataView to filter the results, but how do I know which row in the original table the filter view corresponds to? Any ideas? In know I could ...
0
votes
2answers
795 views
How to return datatable using Take() using C#
I have a function that returns a datatable, I added a code that will sort the datatable using dataview and should return Top 10 rows from a sorted dataview.
DataView dvDt = dtData.DefaultView;
...
0
votes
1answer
1k views
Dataview RowFilter escape invalid characters
Does any one have a handy ready to use method to escape wildcards, invalid characters in the string to be assigned to RowFilter for a DataView in C#. The rules somewhat are like below
If a column ...
0
votes
1answer
80 views
Whats the difference between using assigned variables and straight access
Considering below what are benefits, uses or gain of each and why do you think so? other than short way to access the data. btw is there a way to use DataView in using (Resource){//Code} format.
...
1
vote
1answer
2k views
How to get data after DataView filtering?
I apply a filter to Dataview and after that I need to get the filtered data.
before filtering I did:
dvUnloadOpenAccounts.RowFilter = "uso_id = '30640'";
foreach (DataRow row in ...
6
votes
2answers
917 views
Why does DataTable.Select() return the wrong rows?
The DataTable.Select() function returns the wrong rows with a filter like this...
"booleanColumn1 AND booleanColumn2 AND GuidColumn1 = '00000000-0000-0000-0000-000000000000')"
Making virtually any ...
0
votes
2answers
6k views
How to get selected columns from a datatable
I have a datatable with 10 columns, but User can select the columns to be displayed so I need to create a generic code to display only the selected columns.
Current code:
string[] ...
0
votes
1answer
2k views
Cannot change DataType of a column once it has data
I want to sort a gridview by a datetime-column so I need to change the datatype of that column
I try it with following code but I'm getting the error:
...
0
votes
1answer
669 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 ...
1
vote
2answers
8k views
Sorted dataview to datatable
i have the following method:
private DataTable getsortedtable(DataTable dt)
{
dt.DefaultView.Sort = "Name desc";
//I would need to return the datatable sorted.
}
My issue is that i cannot ...
0
votes
1answer
625 views
ASP.NET DataView - problem with RowFilter and application cache
Good afternoon ladies and gents --
I've been tasked with finding and fixing a bug in an unfamiliar legacy application that had some recent changes made to it, but I don't have an easy way (that I ...
0
votes
4answers
892 views
avoid duplicate values in datatable
in my db i have values as True/False/false/true.... i need to get only the Distinct Values as True and False and not the all values as True & False & false & true...
my code:
...
0
votes
3answers
1k views
How to convert Linq query to a DataTable, DataSet or DataView?
Is there an easy way to do this or do I just need to go through each record and insert it into whatever data structure I go with?
I need it in this format in order to pass it to a third party ...
2
votes
1answer
2k views
Using Aggregate functions in DataView filters
i have a DataTable that has a column ("Profit"). What i want is to get the Sum of all the values in this table. I tried to do this in the following manner...
DataTable dsTemp = new DataTable();
...
1
vote
1answer
390 views
Synchronize datatable/dataview for read write
I have application in .net 2.0 in which I have a DataTable object globally in my application and have different dataviews in whole application.
When an action performed i have create many threads ...
1
vote
2answers
1k views
DataTable.DefaultView.Sort doesn't seem to be working
I populate a DataTable, then sort the DefaultView of that DataTable. When I set the DataTable as the source for my report, the sort doesn't work. In case it helps, here is the code (GetData returns a ...
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");
...
0
votes
2answers
155 views
Odd paging problem with DataGrid and sorting
I have a data table that is being filled by a stored procedure. I need to filter down the results some, so I get a data view from the default view and apply a row filter to it. I then bind this to ...


