tags:

views:

69

answers:

1

I need to have label like controls which display certain information which can be selected. Which control to use?

I need the label (ie control) to be selectable.

The form may have several such controls and the information displayed in each is determined by a single drop down selection in the form.

+4  A: 

Is this for a Windows form application?

What about a TextBox with ReadOnly = true?

In this way the text is selectable and copiable, but the control cannot be edited.

Paolo Tedesco