Tagged Questions
0
votes
2answers
24 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
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 ...
1
vote
2answers
158 views
How can I sort a VB.NET DataView based upon data row substring?
I have this:
Dim strS As String = ""
Dim strRowFilter As String = "SID=" & strSID
Dim dv As DataView = objDataSet.Tables(1).DefaultView
dv.RowFilter = (strRowFilter)
dv.Sort = ("RIGHT(SName, ...
0
votes
2answers
49 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
39 views
DataRowView does not update bound Textbox
I have a textbox that is bound to a DataRowView in the LoadEvent().
Dim Prow as DatarowView
DataSet.Table.DefaultView.RowFilter = "SomeFilter"
Prow = DataSet.table.DefaultView(0)
...
0
votes
2answers
662 views
Dataview Rowfilter
I have a textbox and a button. What i am attempting to do is filter a gridview with the data that has been searched for. The two fields im searching for are customerID and CustomerName.
My code:
Dim ...
1
vote
1answer
135 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
185 views
Committing data added from Windows Form with Textboxes bound to dataview?
This is my first post here so forgive me if I break rules and need to clarify some things later. My problem is that I am using Visual Basic 2008 and have a windows form that has several textboxes ...
0
votes
1answer
201 views
DataView from strongly typed DataSet
We have a strongly typed DataSet created by using the DataSet designer in Visual Studio.
Can you show us the needed coding to create a DataView from this DataSet?
This will be used in an ASP.Net ...
0
votes
1answer
452 views
Creating a DataView for sorting ASP.Net GridView columns
We have a typed DataSet created by the Visual Studio DataSet designer.
Can you tell me how to create a DataView object from the typed DataSet? We want to change the sorting of it so it can be ...
0
votes
1answer
61 views
Removing a sort from dataview
I have a dataview which binds to a PagedDataSource object. The data is pulled into the dataview from the db using a stored procedure and the returned data is sorted according to a date field. The ...
1
vote
2answers
738 views
VB DataView.RowFilter and Cast Before Compare
In the following DataView.Rowfilter filter, Request_Date is a smalldatetime:
dv.RowFilter = "Request_Date >= '01/01/2012' and Request_Date <= '12/31/2012'"
The problem with this is that ...
1
vote
0answers
643 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
184 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
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 ...
0
votes
1answer
721 views
How to Implement Rowspan in a GridView (for .NET 3.5)
I created a custom GridView (actually a RadGrid) which does roughly the following.
Initialize GridView formatting
Setup Columns (depending on type of data to be displayed)
Populate the rows
When ...
0
votes
1answer
2k views
Sorting by date with dataview in VB.NET
Hi and thanks in advance:
So I'm trying to pull a table from an SQL database and sort it on the "Date From" (DtFr) column, which represents the start of a lease. I thought it would be as easy as ...
0
votes
2answers
918 views
Unable to cast object of type 'System.Data.DataView' to type 'System.Data.IDataReader'
I have a function (on vb.net) to get a data from a XMLWebService:
Private Function GetDataSchedule() As DataTable
Dim xTable As Data.DataTable
xTable = xMaster.GetSchedule()
'Bind to ...
1
vote
1answer
2k views
How to loop through a DataView [duplicate]
Possible Duplicate:
Looping through rows in a DataView
I have created a dataview from a datatable.
My question is how can I loop inside the dataview?
I know that in a datatable I can ...
0
votes
1answer
490 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 ...
0
votes
3answers
1k views
Missing operand after '00' operator
I'm trying to filter a dataview using a DataView RowFilter. I want to filter out data based on two date values checked on one column:
Dim dtFuture As Date = DateAdd(DateInterval.Month, 6, Today)
...
2
votes
1answer
878 views
How to merge multiple dataviews into one (VB.NET)?
I have three dataviews (dataview1, dataview2, and dataview3). These are of type System.Data.DataView, and all three have the same columns. Is there an easy way to merge them into one, so I have one ...
1
vote
2answers
531 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
1answer
682 views
VB.NET 2010 Express Dataset/Dataview problems with XML
I am a co-op student learning vb.net and I have a project which retrieves data from an xml file within the program (based on selections made from combo boxes) and calculates and displays prices.
My ...
0
votes
1answer
1k views
How to format a date column in a DataGrid from VB
I have a .aspx file with a datagrid in it:
<asp:DataGrid ID="Gifts"
AutoGenerateColumns="True"
runat="server" AllowSorting="True">
</asp:DataGrid>
The .aspx.vb file associated with ...
1
vote
1answer
2k views
Assigning multiple tables to one DataView
net with vb and sql server 2005.
i have DataSet with 3 tables in it and i want to asign all 3 tables into one DataView
i know its possible to assign each table seperatly by doing this:
Dim dv as ...
0
votes
1answer
992 views
Converting System.Linq.IorderedEnumerable to DataView
I am trying to get the DataView from a linq query expression which is querying a typed dataset. The result lands in a type of System.linq.IOrderedEnumerable. But i'm not able to convert this type to a ...
1
vote
3answers
961 views
Reverse-sorting a Listview (with Comparer class)
I have a two-column ListView linked to a Datapager. The ListView lists all files of a particular type in a particular directory, so the data source is an ArrayList of type FileInfo. Consequently, I ...
0
votes
2answers
517 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, ...


