473,698 Members | 2,754 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Valuemember/Displaymember vs. Delegates

I do not think it is good style to use these because you have to hardcode
the propertynamed in your code as string literals. Wouldn't it be better to
use delegates instead?

myComboBox.Disp layMember = new ReturnStringDel egate(myObj.Nam e);
myComboBox.Valu emember = new ReturnObjectDel egate(myObj.Val ue);
Jul 21 '05 #1
3 1599
This would not work as the delegate refers to a property on a specific
object. This is not what you want since you want to call the same property
on a collection of objects.

Regards, Jakob.

"cody" wrote:
I do not think it is good style to use these because you have to hardcode
the propertynamed in your code as string literals. Wouldn't it be better to
use delegates instead?

myComboBox.Disp layMember = new ReturnStringDel egate(myObj.Nam e);
myComboBox.Valu emember = new ReturnObjectDel egate(myObj.Val ue);

Jul 21 '05 #2
Damn you are right. There should be some sort of static delegates which
define a method to call but not the object on which to call it.

"Jakob Christensen" <jc*@REMOVEpens ion.dk> schrieb im Newsbeitrag
news:73******** *************** ***********@mic rosoft.com...
This would not work as the delegate refers to a property on a specific
object. This is not what you want since you want to call the same property on a collection of objects.

Regards, Jakob.

"cody" wrote:
I do not think it is good style to use these because you have to hardcode the propertynamed in your code as string literals. Wouldn't it be better to use delegates instead?

myComboBox.Disp layMember = new ReturnStringDel egate(myObj.Nam e);
myComboBox.Valu emember = new ReturnObjectDel egate(myObj.Val ue);

Jul 21 '05 #3
Actually, this is what the types System.Componen tModel.Property Descriptor and
System.Reflecti on.PropertyInfo are capable of. But the only way to get a
hold of an instance of PropertyInfo for a property is to use Type.GetPropert y
and the name of the property, which is exactly what ComboBox does (the base
class ListControl does this through the System.Windows. Forms.PropertyM anager
class, I believe).

Regards, Jakob.
"cody" wrote:
Damn you are right. There should be some sort of static delegates which
define a method to call but not the object on which to call it.

"Jakob Christensen" <jc*@REMOVEpens ion.dk> schrieb im Newsbeitrag
news:73******** *************** ***********@mic rosoft.com...
This would not work as the delegate refers to a property on a specific
object. This is not what you want since you want to call the same

property
on a collection of objects.

Regards, Jakob.

"cody" wrote:
I do not think it is good style to use these because you have to hardcode the propertynamed in your code as string literals. Wouldn't it be better to use delegates instead?

myComboBox.Disp layMember = new ReturnStringDel egate(myObj.Nam e);
myComboBox.Valu emember = new ReturnObjectDel egate(myObj.Val ue);


Jul 21 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
4471
by: Dianna K | last post by:
I have a combo box which is set up as such: Me.cboGenre.DataSource = Ds.Tables("Genre") Me.cboGenre.ValueMember = "genre_id" Me.cboGenre.DisplayMember = "genre_description" The above loads combo box and works fine. When I retreive records and try to set the combo box text value to the field being returned by the dataset it will
2
2018
by: Supa Hoopsa | last post by:
Working on a windows form, I am trying to bind a listbox to a dataset and want to set the displaymember & Valuemember properties of the listbox so that I can retrieve the selectedvalue from a selecteditem in the listbox. My code is very simple: lstReports.DataBindings.Clear() lstReports.DataSource = dsDataSet.Tables("Reports") lstReports.DisplayMember = "ReportDescription" lstReports.ValueMember = "ReportsKey"
1
11056
by: Jim Heavey | last post by:
If you have a comboBox which has it's DisplayMember and ValueMenber bound to a datatable. If I know the "ValueMember" value - is there a way for me to set the index of the control to correspond to that ValueMember without having to iterate over the values in the control to find the index of the matching value menber? There is a "FindString" method of the ComboBox which apparently iterates over the collection looking form a match on...
0
1164
by: Beringer | last post by:
I have implemented a combobox and have set the DataSource to an ArrayList. I next set the DisplayMember and ValueMember properties. When I run the code the combobox will display the proper text set by DisplayMember but it seems that the ValueMember doesn't work correct because when I go to use the SelectValue property it never displays the correct text in the combobox. Here is an example of my code:
1
1571
by: Bruce A. Julseth | last post by:
Sorry. The other post got sent before I was complete. Does the ValueMember property in the ComboBox work like the DisplayMember property. For example, if I set the properties: comboBox1.DataSource = dataSet1 comboBox1.DisplayMember ="Employees.LastName" comboBox1.ValueMember = "Employees.EmployeeID" If I select from the box a "LastName", I can retrive that selected name. How
2
6439
by: Sam | last post by:
This code does not work : With m_frmCtrl.cboMode .DataSource = m_dsCtrl.Tables(4) .ValueMember = "ModeID" .DisplayMember = "Description" .SelectedValue = ds.Tables(0).Rows(curRow).Item("ModeID") End With The line .DisplayMember triggers the following error :
3
224
by: cody | last post by:
I do not think it is good style to use these because you have to hardcode the propertynamed in your code as string literals. Wouldn't it be better to use delegates instead? myComboBox.DisplayMember = new ReturnStringDelegate(myObj.Name); myComboBox.Valuemember = new ReturnObjectDelegate(myObj.Value);
5
2714
by: Spam Catcher | last post by:
Hello all, I can't seem to set the value member properly in code... I'm using a ComboBox in DropDownList mode: Private Class ApplicationsComboBoxItem Private _Name As String Private _Application As ApplicationWorker
5
34072
by: =?Utf-8?B?QmVu?= | last post by:
How would you add an item with its DisplayMember and ValueMember without binding to a datatable or dataview like: listbox.DisplayMember = "name"; listbox.ValueMember = "recid"; listbox.DataSource = dt; listbox.Items.Add(name) can only add the DisplayMember. Thanks,
0
8683
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9031
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8901
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8871
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6528
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4371
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4622
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3052
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2007
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.