Tagged Questions
0
votes
1answer
35 views
Adding rows to a Gridview that is bound to a SqlDataSource
I am trying to add a row to a gridview dynamically, while the gridview has a SqlDataSource bound to it. Is it possible to add a custom row while the data is still binding? I am coding in vb.
0
votes
2answers
48 views
How to clear exisiting dropdownlist items when its content changes?
ddl2 populates based on ddl1 selected value successfully.
My issue is the data that is already present in ddl2 does not clear before appending the new data so ddl2 content just continues to grow ...
0
votes
1answer
98 views
WPF VB.NET Binding Image Source From String in Data Template
My first WPF application (please be gentle!), and I'm making an app based on events during a football match. So I've set up a Player class, and one of the properties is Nationality eg: Scotland. Then ...
0
votes
0answers
19 views
How to create a 'standard' form with a datagridview passing only Select command
i'm trying to create a 'standard' form with a DataGridView to show data.
In this form i want user can: Insert, Update, Delete record.
I've created a form, with a toolbar, with 3 buttons (Add, Save, ...
1
vote
0answers
85 views
In VB.Net 2008, bound Combo Box doesn't update on move to specific record
I could use some direction as I'm totally stumped on this...
In VB.Net 2008, I have a form with a data binding source called TblComplaintBindingSource. While it had more fields, the two I'm concerned ...
3
votes
4answers
139 views
Specified Cast is not valid when DataBind to Nullable DateTimeOffset and field is NULL
I've created a simple CompositeControl and exposed a Nullable DateTimeOffset property.
I'm binding the control to a SQL Server DateTimeOffset field using
DateTimeOffset='<%# ...
0
votes
0answers
37 views
TextBox Enabled Property Binding from code
I'm writing my first Application with VB.NET 2012 (Visual Studio Express 2012)
I need to create a TabItem dinamically and I've a problem when I need to create a Binding on the Property IsEnabled of a ...
0
votes
1answer
50 views
Databindings for label on a winform usercontrol
I'm creating a usercontrol for a winform app that contains two labels, one as a header and the other one needs to bind to a datasource through Me.usercontrol1.databindings.add(). I'm a novice in ...
0
votes
0answers
270 views
How to use DataTable Insert To Database SqlServer VB.NET?
I want bind data from MS Access 2007 (.mdb) Insert To Database (Sql Server).
I don't Insert To Database, I can bind data from Access to Datagridview Because look check data now. (don't insert ...
0
votes
1answer
159 views
vb.net: DataBinding of a UserControl-CheckBox and a Class-Property is not updated on PropertyChange
I made a small UserControl with a checkbox in it and tried to DataBind it to a boolean property of a class. The DataSourceUpdateMode of the Binding is set to OnPropertyChanged. Unfortunately it doesnt ...
0
votes
1answer
55 views
Cannot bind dropdownlist to my linq queries
I am dragging in dropdownlist controls to my aspx page. When I write any query in the asppx.vb page and try to bind it to my ddl the ddl remains unbound. I have tried several different ways of doing ...
1
vote
1answer
205 views
Syntax error in INSERT INTO statement. in VB.net 2010
I have been this problem for a week and searching every existing forum for an answer maybe this time that i post my own problem.
My problem was in saving a data in a database. I have a datagrid that ...
0
votes
0answers
47 views
Create a list that can bind to a gridview using a multicolumn list
I currently have a gridview, with multiple hidden fields in, for example:
<asp:GridView runat="server" ID="gvMain">
<columns>
<asp:Label runat="server" ID="lblMain" ...
1
vote
0answers
19 views
WPF: xmldataprovider access database
Is it possible to bind my access database in here?
<XmlDataProvider x:Key="DeviceListData" XPath="Root">
<x:XData>
<Root xmlns="">
<Entry ...
0
votes
0answers
99 views
Password Validation in Visual Studio 2012 - using BindingSource and SQL database
I need help. Need to do password validation and have no idea why it doesn't work. Could someone tell me what my code is missing or what is actually wrong with my way of thinking? I am connecting it to ...
0
votes
0answers
37 views
why doesn't my databindings to a textbox refresh
I'm binding a textbox to a dataset table field,
e.g.
txtFirstName.DataBindings.Add(New Binding("Text", dsCustomers, "Customers.FirstName"))
when they click an edit button, i allow the fields to ...
0
votes
2answers
40 views
Combining Formatting and Databinding from the database
I have a set of labels in a DataRepeater. The labels get their values from a table in a SQL database (Let say GetSQLResults gets the data from SQL database and returns a DataTable).
Dim ...
0
votes
1answer
47 views
How to bring data from WorkerThread to UI [closed]
I'm working with WPF and VB.NET, in Visual Studio 2012.
I'm having a lot of trouble bringing data from my WorkerThread to my UI. I'm trying to plot data with Visifire. The following code works ...
0
votes
1answer
539 views
SqlDataSource with DropDownList Control Parameter doesn't read value
I have a drop down list that bound to a SqlDataSource.
I have another drop down list that's bound to a different SqlDataSource.
The second SqlDataSource has the first drop down as a Control ...
0
votes
2answers
166 views
Data Binding not working in WPF VB.NET
I've been trying to get a handle on data binding, and I'm having trouble making it work. Can someone point me in the right direction?
I'm using VS2012 and programming in WPF/vb.net. I've got an ...
0
votes
0answers
103 views
Binding and Edit on Datagridview But Error “Object reference…” in vb.net
I want Edit value in datagridview. but Error "Object reference not set to an instance of an object."
Code:
Private Sub btEdit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) ...
0
votes
1answer
268 views
ASP.net/VB.net Generating a data bound form at runtime
I'm currently trying to put together code that will dynamically generate a set of HTML form controls at runtime, and then databind those controls. From what I've read, you can't databind form controls ...
0
votes
1answer
1k views
How Update cell in datagridview after enter? vb.net
i want update value from datagridview to sql after enter on cell. but it don't work.
this code:
Private Sub dgvShow_KeyPress(ByVal sender As System.Object, ByVal e As ...
1
vote
1answer
220 views
Why does binding to a set of Winforms cascading combo boxes cause the root combo box to not set its value properly?
I have a Windows form with two combo boxes. The SelectedValue property of each combo box is data bound to a property on a simple DTO. The options for each combo box are drawn from a list of model ...
0
votes
1answer
224 views
VB.Net binding filtered dataview to Listbox
I am attempting to perform a filter on an Access database with Visual Studio 2010. The user will enter the search criteria into a textbox and I would like the results to be displayed in a listbox with ...
1
vote
1answer
191 views
vb.net - custom templates issue with databinding expressions in repeater control
I'm new here but I've been browsing stackoverflow for a while when looking for answers.
Here's the problem : I'm trying to implement a custom repeater with multiple conditional templates to avoid as ...
0
votes
0answers
75 views
Binding To Combobox But Error “Object reference…” in vb.net
i want binding with combobox. but it's error "Object reference not set to an instance of an object."
This Code:
Private Sub cbSection_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As ...
0
votes
0answers
105 views
how to bind dataset to Fastobjectlistview using vb net?
i've been trying to bind a dataset to Fastobjectistview in vb net but failed.
here is my code : Me.FastobjectlistView1.VirtualListDataSource = myData.Tables("data")
it shows an error said "unable to ...
0
votes
1answer
76 views
How to binding Max Function Textbox1 To Textbox2?
i use vb.net 2008, i want binding txtEmpNo To txtRate. but i checked column it's correct.
Error "Cannot bind to the property or column Rate on the DataSource. Parameter name: dataMember"
This Code:
...
0
votes
0answers
93 views
Binding to Infragistics ComboEditor in Code Behind
I'm trying to bind to a XamComboEditor and a XamMultiColumnComboEditor in the code behind of my vb.net project. If possible, I want to do this binding in a similar fashion to how I bind a WPF ...
0
votes
0answers
66 views
WPF: Help in Databinding
The texblock Ebrname is like the key to show data that i need
<UserControl x:Class="Main.Edit"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
1
vote
1answer
108 views
WPF recordset listbox databind?
how can i bind my records to the itemsource of a list box?
cn.ConnectionString = "Provider=Microsoft.Ace.Oledb.12.0; Data Source=" & My.Application.Info.DirectoryPath.ToString() & "\mvdata.accdb;"
...
0
votes
3answers
105 views
How use loops by datetime each on weekly in vb.net
i try loop while with datetime each on weekly in VB.NET 2008.
This Code
Private Sub Button1_Click()....
'Select DateTime
Dim strDate As Date = ...
1
vote
1answer
85 views
wpf lable text binding not working, where i am going wrong
I am new to WPF and trying something like this to update a label text in the WPF form from the class.
The onchange event is getting triggered, but not getting displayed on the form
Here is my class
...
0
votes
0answers
113 views
Showing an Error Provider on a text box when a users tabs out of the text box without entering any data
I know this is pretty basic, but I cant get this to work for the life of me.
I have a text box (PassportField) and a check box (PassportCheckBox) that are bound to my class's (Person) properties. The ...
1
vote
0answers
52 views
How to WriteValue for all bindings
I am planning to use .NET data binding for a small project, which is mostly a configuration editor. So a collection of settings is bound to a form, loaded from app.config at the start, and saved back ...
1
vote
0answers
88 views
Binding a Decimal to NumericUpDown with Minimum other than 0
I'm binding a decimal (from an NHibernate entity) to a NumericUpDown.
_numUpDown.DataBindings.Add(New Binding("Value", _BindingSource, "TheDecimal", False, DataSourceUpdateMode.OnPropertyChanged))
...
0
votes
1answer
183 views
VB There is no row at position 0
I have a database that currently has nothing in it and I'm trying to create and save the first record, but end up getting an error that says "There is no row at position 0."
What I've done is ...
1
vote
0answers
74 views
Changing source collection of ObservableCollection property
One of my library classes exposes a property that looks somewhat like this:
Private _myCollection As New ObservableCollection(Of String)
Public ReadOnly Property MyCollection As ...
1
vote
0answers
202 views
Search between two dates w/ datarows in vb 2010
I am trying to search between two dates in a bound source (SQL table) in VB 2010, using data rows. Since 'between' in unsupported with the data rows function, I used < and >.
So I run this code ...
0
votes
1answer
499 views
Binding combobox selected value to a specific column of current row (not a datagridview)
I have a database that I am using in a VB 2010 project. What I did was removed a textbox for a database field that I dragged onto the form and replaced it with a combobox. The field name was ...
0
votes
0answers
58 views
WPF CollectionView and binding, with handbuilt classes - Is this good enough?
My little content project is finally at a useable stage. However, every class is handbuilt or generated through a home made tool. The reason is, we use Access 2007 for the content database. So the ...
1
vote
2answers
222 views
Bind to a structure property in VB.NET
I am trying to bind structure members to Labels in Windows Forms. However, I'm unable to do this because this structure is a member of a class, and I need to bind a couple of members to Labels.
Let's ...
0
votes
0answers
281 views
Databinding to chart in VB.NET
I'm trying to retrieve information from database to show on my Line Chart to show calorie intakes by dates, but the following error keeps appearing at DataBind()
Series data points do not support ...
0
votes
1answer
132 views
Beginner frustration from WPF, esp. on Data Binding
First of all, I really am a beginner. I mostly worked on WinForm, so I never heard of Data Binding such on WPF.
Tried to learn from blogs and MSDN, but I just can't get a grasp. Data Binding is only ...
0
votes
0answers
206 views
What is wrong with my listbox databinding?
I mostly do databinding on ComboBoxes and DataGrids, and I assumed a ListBox would work the same, but it appears I'm missing something since my ListBox remains blank as I add Scan objects to my ...
0
votes
2answers
57 views
Which controller to use to display more than one row and column returned from a query?
I have this SQL query:
SELECT exitHour, [date], enterHour, total
FROM enterAndExit
WHERE (id = ?)
Which controller should I use to display the "new table" that I get from ...
0
votes
1answer
289 views
TextBox cursor position always 0 after databinding
I have the simple following command:
me.textbox1.databindings.clear
me.textbox1.databindings.add("text",TicketsBindingSource,"TicketSubject")
the command exeutes succesfully and I can see in the ...
1
vote
0answers
150 views
How do I serialize the object I am passing as a parameter from page to page in a Windows Store App
I am working on a Windows Store app and I am having an issue serializing my DTO classes back to the xml file that I was able to deserialize. After data-binding and changing some data I can't figure ...
0
votes
0answers
100 views
Item cannot be added to a read-only or fixed-size list
I would like to ask some help with the below codes. I am programming in VB 2010 and whenever I ran my program, I get the error, "Item cannot be added to a read-only or fixed-size list".
Private Sub ...


