| Thread | Last Post | Replies |
|
| connecting MS access database and getting records | 31 Jan 2008 04:33 GMT | 4 |
i have aasked this question be4 but i need to say it again: i have a vb .Net 2005 application with a form (frm_customers) and a MS access database (*.mdb) with a table in it (tblcustomers). by the way my form has a datagridview control.
|
| Normal Data Question | 30 Jan 2008 14:36 GMT | 6 |
Dear All, This is probably a bit of a stupid question. I have been resisting using the databinding tools in 2005, however I watch a demo this morning on MSDN and thought that I'd give it a go.
|
| Problem: Binding to a property of an object which implements IList | 29 Jan 2008 12:08 GMT | 4 |
I would be grateful for helpful suggestions with regard to the following problem: It's of course easy to data-bind to the "Name"-property of on object, that instantiates the following class:
|
| Not Creating TableAdapter | 23 Jan 2008 10:18 GMT | 5 |
Generally, when I add a grid to my vb app, I can "Choose data Source", "Add Project datasource" and select a stored procedure. This creates three objects: a datasource, a BindingSource and a TableAdapter. Now, I have a stored procedure which returns a recordset based upon Dynamic
|
| Binding to a property of a user control | 23 Jan 2008 07:31 GMT | 1 |
I created a user control with a property MyText(): Public Property MyText() As String Get Return Me.TextBox1.Text
|
| Bindingsource and 'businessobject' dynamic properties won't bind | 22 Jan 2008 22:54 GMT | 10 |
i'm writing some basic businessobject classes for use in a framework and dynamic properties and the bindingsource class drive me crazy. The idea is, that you can dynamically expand an businessobject by some properties, that can be bound at runtime.
|
| connecting MS access database and getting records (MVP plz Help) | 22 Jan 2008 22:08 GMT | 1 |
i have a vb .Net 2005 application with a form (frm_customers) and a MS access database (*.mdb) with a table in it (tblcustomers). by the way my form has a datagridview control. now what i want to do is to show records of tbl_customers in datagridview
|
| Binding/DataSource Problem | 20 Jan 2008 17:57 GMT | 3 |
I am using the following simple binding for a windows form. As you can see I am handling the Format and Parse methods with some unique code: Dim bRespEng As Binding = New Binding("Text", SCRDataSet, "scrdata.ENG") AddHandler bRespEng.Format, AddressOf DBNullToString AddHandler ...
|
| datatable defaultview question | 17 Jan 2008 11:16 GMT | 3 |
I have a vb .net application. in which the following code is used to load data from tbl_customers into customers_datagrid on frm_customers: Me.customersTableAdapter.Fill(Me.CustomersDataSet.Tbl_Customers) i have already used dataview to apply filter on customers and show it's
|
| Cannot bind a ConnectionStringBuilder instance to a custom control | 16 Jan 2008 17:47 GMT | 1 |
First the context : VS2K8 2 .NET 2.0 projects (the control project and the WinForm test project) The control is supposed to help someone build a connection string
|
| simple vb .net data question | 16 Jan 2008 10:41 GMT | 2 |
i had a vb .net application in vs .net 2003 which had a dataview control in which i used it in my program and was a very useful control. but now i'm working in vb .net 2005 and i can't find any such control . so i need to know where has it gone or is it replaced with new control ...
|
| BindingSource not data binding controls | 12 Jan 2008 05:51 GMT | 1 |
I have user defined control that accepts a data source to do some custom data binding. When I bind the controls against the bindingsource, it doesn't work, but if i bind it directly against datatable object (Dim src), it works just fine. Issue is that using
|
| How Do I Set a Data Bound Combobox to a Specific Record | 11 Jan 2008 08:44 GMT | 1 |
With a data bound combobox control, how do I set the current selection in the combobox the record with the specific value member, "HiddenUsrId", column value? I saw some group comments that said to use FindStringExact() and that would
|
| BindingSource Winforms to Business Object - Cannot leave text box | 08 Jan 2008 18:26 GMT | 3 |
I'm binding a text box to a Integer (Nullable) property of a business object. If the user enters invalid data or even enteres nothing (example, just leaves it blank) they cannot leave the field at all. Adding an ErrorProvider gives me "Invalid Cast Exception" as the error. How ...
|
| Databinding DataGridView to business object | 07 Jan 2008 06:40 GMT | 1 |
I'm attempting to code my own data access layer class; it's been about a month of coding, following examples, searching Wikipedia and UseNet, and my efforts have met with some success. Right now I'm implementing IList, but I may change it to a derived class depending on what I can
|