Data manipulation before binding

N

nagar

I'm using data binding to display the values of a dataset in a form.
Normally I associate the Text property of the UI element to a field of
the dataset.

For a specific field, I need to do the following:

I fill a combobox with custom objects that basically have two
properties (value which is stored in the dataset and description which
is retrieved from the value using a custom algorithm)

1. the dataset field is a string (the value)
2. In the combobox, I need to select an item based on the value of the
dataset (after having appropriately converted from string to int).

How can I do that? Should I use a TypeConverter? How?

Thanks.
Andrea
 
N

Nicholas Paldino [.NET/C# MVP]

Andrea,

Are these values properties of the same object/datatable? If so, just
set the DisplayMember and ValueMember to the appropriate properties and you
should be able to access the currently selected value through the
SelectedValue property.
 
N

nagar

Thanks for your reply Nicholas.
Actually, the combobox doesn't have to show a list of values gathered
from the database.

I need to show a list of installed browsers and I fill the combobox
with the description of the browsers I get looking into the registry.

In my DB, in each record, I have saved the name of the executable, for
example iexplore.exe or firefox.exe.

I retrieve the name of the browser executable and from that I need to
select the appropriate element in the combobox.
The combobox contains a custom object, with two properties, the name
and the description of the browser.

I don't know if I can bind the data directly or it would be easier to
create a column in the DB containing, for example, the index of the
element to be selected in the combobox according to the value. The
only problem with this would be synchronizing the data.

Thanks.
Andrea
 
L

Linda Liu[MSFT]

Hi Andrea,
I need to show a list of installed browsers and I fill the combobox with the description
of the browsers I get looking into the registry.

Based on my understanding, you have a list of objects containing the name
and description of the installed browsers and you fill a ComboBox with this
list.
In my DB, in each record, I have saved the name of the executable, for example
iexplore.exe or firefox.exe.

Based on my undertanding, you have a DataTable with one field containing
the name of the installed browsers and you'd like to bind the ComboBox to
this DataTable.

If I'm off base, please feel free to let me know.

I suggest that you bind the ComboBox to the above list by setting the
DataSource property of the ComboBox to the list and the DisplayMember
property to the description property and the ValueMember property to the
name property.

Then you bind the SelectedValue property of the ComboBox to the field
containing the name of the installed browsers within the DataTable.

If you have any question, please feel free to let me know.

Sincerely,
Linda Liu
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 
L

Linda Liu[MSFT]

Hi Andrea,

How about the problem now?

If you have any question, please feel free to let me know.

Thank you for using our MSDN Managed Newsgroup Support Service!

Sincerely,
Linda Liu
Microsoft Online Community Support
 
N

nagar

Thanks for the reply Linda.
I managed to fix the problem binding the value to a textbox and
handling the textchanged event to correctly select the item in the
combobox.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top