| Thread | Last Post | Replies |
|
| Bitwise operators in RowFilter | 29 Feb 2008 18:09 GMT | 4 |
I want to set the DataSourse of a ComboBox and for that a have a DataTable containing the data. I only want a subset of the data bound to my ComboBox so I create a DataView and try to select
|
| VB .NET combobox advanced databinding question | 29 Feb 2008 06:41 GMT | 3 |
I have a form which has a databound combobox on it. The display is bound to one part of the data and the selection is bound to the other. The selected value is bound to another binding source item. This works fine when I only want to bind the selected value to another object. ...
|
| DataGridView and sorted DataView - how to locate table row? | 23 Feb 2008 05:29 GMT | 6 |
I'm using a DataGridView bound to a DataView on an underlying DataTable. Starting from the grid row index, how can I locate the row in the underlying DataTable's rows collection? All I've got is the row index, which after sorting no longer matches the
|
| Enlighten me please! | 21 Feb 2008 16:37 GMT | 2 |
Suppose I have this: listBox1.DataSource = listView1.Items; listBox1.DisplayMember = "Text"; comboBox1.DataSource = listView1.Items;
|
| ?? Bindings are Ignored on Form Size and Location ?? | 20 Feb 2008 07:01 GMT | 3 |
I'm trying to bind my Form's ClientSize and Location properties to entries in the app.config file. When the user resizes and/or moves the form, I want the changes in the form's size and location to be saved back to the app.config file.
|
| DataBindings from XML <-> TextBox, 1.4 vs 2.0, and exceptions... | 18 Feb 2008 23:23 GMT | 2 |
I've run into a problem converting a Windows Forms app from .NET 1.4 to 2.0. The application makes extensive use of binding various controls to XML nodes. Under 1.4, this works great. Under 2.0, it no longer works.
|
| CheckedListBox -> Manually Adding Objects | 18 Feb 2008 07:44 GMT | 2 |
I need to add items to a CheckedListBox. I need to use the DisplayMember & ValueMember properties as I have a SupplierID & SupplierName to work with. I also need to default all Items to be checked when adding them. I am able to Bind using a <List> but then need to check all the ...
|
| Exporting Datagrid to flat file within Form | 11 Feb 2008 15:08 GMT | 4 |
Hi There, I am developing an windows application using VB.NET and I need to export and open the contents of my datagrid to a flat file. Preferably txt or wordpad. Whats the best direction/chunk of code to do this?
|
| NoNullAllowedException when adding new row to bindingsource | 11 Feb 2008 06:52 GMT | 1 |
How do I catch the NoNullAllowedException as produced via the following setup - I have a table with two colums - id and name. Neither allow null values. id is the primary, and auto-increments when a new value is
|
| DB Updates not reaching Database | 08 Feb 2008 22:39 GMT | 3 |
I created a very simple walkthrough C# project in VS2005, just a blank form with a detail view of a data table. I create a data source with an existing SQL database file using an SQLCLient connection. SQL express server is installed. THe "Test Connection" passes OK and The ...
|
| huge amount of data in a control | 07 Feb 2008 15:21 GMT | 2 |
Sorry for cross-posting, but in the other group nobody seems to know. How can I create/use a control to display a huge amount of data from a stream without actually loading all this data? Can I use the TextBox control with some kind of custom data binding, or should I create a
|
| prm = Nothing | 06 Feb 2008 23:39 GMT | 5 |
Just curious... Given: Dim cmd As New SqlClient.SqlCommand ...
|
| sending image file to MS Access database in VB .Net 2005 | 05 Feb 2008 09:48 GMT | 1 |
i have asked this question befoe but i did not eceive any reply on that. so i have to ask it again. i want to know that how can i store a picture in my MS access database file (*.mdb). i curently have a VB .Net application which has a form
|
| Making a change to a check box cell instant | 04 Feb 2008 17:28 GMT | 3 |
I have a data grid that has a check box in one column. I would like the value in the dataset to change as the user clicks on the check box, not after they click on another row. How do I do that?
|
| How to catch exceptions thrown by BO when using binding | 04 Feb 2008 03:50 GMT | 1 |
If I databind a BO that I created and to a textbox, and the BO throws an exception rejecting a value, how can I catch that exception? In the sample below, if I enter a value over 100 into TextBox1, focus does not move from TextBox1 and the 'Validated' event does not fire. I don't ...
|