Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
150 views

DataRowVersion not working when using DataSet.ReadXML(…) to load data

So I've spent all day finding where the problem lies. If I don't use XML to load data into my DataSet (i.e. just grab it straight from a database or somesuch) then I have no problems at all. However, ...
1
vote
1answer
1k views

Convert Custom Object To DataRowView C# WinForms

I have a custom object as follows public partial class _AccessionType { private string accessionIdField; private string docUrlField; /// public string ...
1
vote
2answers
5k views

Get the DefaultView DataRowView from a DataRow

Here's the situation: I need to bind a WPF FixedPage against a DataRow. Bindings don't work against DataRows; they work against DataRowViews. I need to do this in the most generic way possible, as ...
0
votes
1answer
31 views

Object Reference not set to an instance - trying to get DataRowView from a ListItem

I am trying to get the bound values from a row in a ListItem. I have a button on each row that when clicked will perform a task (sending an email message to the person who's name and email address is ...
0
votes
1answer
83 views

Getting data from Listview WPF

I have 2 listviews that serve different purposes. Short question is that I need to find out how to pull specific columns from a WPF listview to add them to properties of an object. Explanation of ...
0
votes
0answers
64 views

Binding datagrid raw to current item

I need to bind one of the row in DataGrid to current item using a converter. Binding Path=. (or Path=SelectedItem) returns current DataRowView but I need an actual item. Another question is how to ...
0
votes
2answers
90 views

Missing XML Elements in an XML file

I am trying to read XML files from different machines, some of these files may have data elements that others don't have. Currently, I am using a Try-Catch block to handle these situations but I was ...
0
votes
1answer
122 views

How To Change DataRow Value?

I have the Two-dimensional datarow array like this Datarow Mydatarow [][] = new Datarow[5][5] ; and initial Mydatarow form database ... Now I Want to do this code and change Mydatarow value ...
0
votes
2answers
304 views

Binding to DataRowView with a DataTrigger inside of a DataGrid

I am trying to implement a cell template for a datagrid.  The problem is, when I try to bind to the Object within the datagridview, I am not getting the values that I am expecting.   This ...
0
votes
1answer
87 views

Adding new record in DataView on condition different values in columns in record?

I have a DataView in my code-behind page : DataView _dvListing = _dt.DefaultView; What I want to do is loop through the view/table and check the column value of the current record with the value in ...
0
votes
1answer
261 views

How can I convert DataRowView type to integer type?

How can I convert DataRowView type to integer type?
0
votes
2answers
204 views

How can the DataView object reference not be set?

I have the following sample where the SourceData class would represent a DataView resulting from an Sql query: class MainClass { private static SourceData Source; private static DataView ...
0
votes
2answers
365 views

RowFilter LIKE operation

I know that the following is not allowed as a row filter 'canada%.txt' or 'canada*.txt' and I guess I can rewrite my filter as file_name like 'Canada%' and file_name like '%.txt' should work. ...
0
votes
2answers
548 views

How can I access DataGridRow from a textbox on that row?

In a DataGrid, when text in a textbox changes I want to add the value of another field in that row to an array. public void txtTitle_TextChanged(object sender, EventArgs e) { TextBox titleBox = ...
0
votes
1answer
85 views

Strange DataRowView errors when generating large RS reports

I have an ASP.NET application, built over DotNetNuke, used in my university for student management. Any now and then, when generating some long-running report, the application throws an error like ...