or
For
i
As
Integer
= 0
To
9
Dim
oItem
As
New
RadListDataItem
oItem.Text =
"COM"
& i
oItem.Value =
"COM"
& i
rddReceiveCOM.Items.Add(oItem)
rddSendCOM.Items.Add(oItem)
oItem =
Nothing
Next
I would like to modify one of the existing themes in my project. Can I extract one of the built in themes and modify it with a different name. Is this even possible? I am mainly concerned with the Radform theme.
I need a control that does the following thing:
A Normal button on Top, and if i click on the button, it opens e.g. exact the same buttons (visually the same full button) with other text in it
directly under the button above.
-----------
| 13:00 | Button 1 ( Normal state)
-----------
------------
| 13:00 | Button 1 (Expanded state)
------------
| 15:00 | Button 2
------------
| 17:00 | Button 3
-----------
Please could you tell me how can i realize this ?
Thank you very much