all groups > dotnet windows forms databinding > november 2005 > threads for november 22 - 28, 2005
Filter by week: 1 2 3 4 5
Does Adding More Than 1 Binding Work in VS2005?
Posted by gary59 NO[at]SPAM chartermi.net at 11/28/2005 5:18:41 PM
If I bind multiple properties of a single control to different sources,
only the first one ever works. For example, I subclass a TextBox and
add an IsLocked property. I then add bindings for the Text property and
my new IsLocked property, but only the first property will ever be
bound. I can rev... more >>
Using CurrencyManager's ItemChanged Event correctly
Posted by michael at 11/27/2005 6:47:03 PM
I assumed that the CurrencyManager's ItemChanged event could be used to
identify that some part of a row has changed and allow for the opportunity to
ask the user if they want to keep the change (or not) prior to changing the
CurrencyManager's position.
I have found the that ItemChanged eve... more >>
How to change color of edited winforms datagrid cells?
Posted by glevik NO[at]SPAM gmail.com at 11/25/2005 6:19:24 PM
Hello,
I would like for WinForms Datagrid cells whose value has changed to
stand out in some way - background color, font etc. I know that I can
override the paint event to change cell appearance, but paint is not
useful to me for detecting when cell contents have changed. I also know
that I ... more >>
reset a unbound form after a record deletion
Posted by Stephen at 11/25/2005 5:55:38 AM
I am using Visual C# Express (.net 2.0) and I am wondering if there is
a way to reset a form. I come from asp.net and I am used to binding
the data in code during the page load event. Winforms offers
databinding more like ms access, where you can bind the form directly
to a dataset, but I pref... more >>
dataview, which row is selected
Posted by Paul Wohlhart at 11/25/2005 12:00:00 AM
hi
i'm a complete newby to the adonet stuff. so i'm facing beginner problems.
i have a DataGrid bound to a table called data
dataGrid.DataSource = data;
data gets filled by a DataAdapter da
da.fill(data);
the table has two rows: "id" and "name".
since i inserted a TableStyle to ... more >>
combobox inside datagrid
Posted by Rick at 11/24/2005 12:43:57 PM
hi group!!
my question is in a datagrid i have 3 columns, 2 columns are just text,
third is type combobox, can i load in that combobox values from other table
that is not the same the grid displays? (if true, how can i do it?)
Thanks!!
... more >>
Combobox simple Question -- MVP please Help --
Posted by mf_sina at 11/23/2005 9:40:58 PM
Hi all!
I have a textbox which has a read-only proprety. which it's text can be
selected and copied but not edited.
but i didn't find readonly property for a combobox. setting enabled property
to false will make it disabled. the text can't be selected or copied.
What's the best way to hanle... more >>
Simple ComboBox Databinding Problem
Posted by Mike Robbins at 11/23/2005 9:32:07 AM
When I open my form, the textbox is bound and will change when the position
in the dataset is changed, but the combo box is blank. The items in the
combobox list are populated.
The combo's datasource is an ArrayList of Facility objects. The ID is being
stored in the SelectedValue as I can deb... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Combobox doesn't have readonly property???
Posted by mf_sina at 11/22/2005 2:24:07 AM
Hi all!
I have a textbox which has a read-only proprety. which it's text can be
selected and copied but not edited.
but i didn't find readonly property for a combobox. setting enabled property
to false will make it disabled. the text can't be selected or copied.
What's the best way to han... more >>
|