Telerik Forums
UI for WinForms Forum
2 answers
171 views
How do I change (in VB.Net) the properties of the hosted control a radlabel?

What I'm trying to do is set the UseMnemonic property to false.

Ryan
Ryan
Top achievements
Rank 1
 answered on 22 Aug 2008
4 answers
228 views
Hi,

I'm trying to figure out how to get the radChart to display in the RadRotator.. it would be nice to have a series of charts of data that rotates over time... How would I go about this, since the rotator only seems to take RadItems?

Thanks,
Nikolay
Telerik team
 answered on 22 Aug 2008
1 answer
87 views
I am using following code

radgridview1.GridElement.BeginUpdate()

For Each row As GridViewDataRowInfo In radgridview1.Rows

    row.IsExpanded =

True

Next

radgridview1.GridElement.EndUpdate()

The hierachical rows and child rows are showing fine. However symbol for collapsing is missing. I am using Vista theme.

In another form using same properties and theme ^ and upside down ^ shows up for expanding and collapsing. What could be the reason?

Regards ... DP

Jack
Telerik team
 answered on 22 Aug 2008
1 answer
288 views
As per the instructions given in this thread: http://www.telerik.com/community/forums/thread/b311D-mkmhd.aspx I was able to successfully change the backcolor of a tab programmatically.  When I try to reset the tab color back to its original color, it works fine, except that the color stays changed until I hover over the tab, and then it fully returns to normal.

For example, I have a tab strip with the default blue colored tabs.  I click a button to change one of the tabs to yellow, and it works.  I click another button to change the color back to the original blue color, but the tab still remains yellow.  When I hover my mouse over the yellow tab, it changes to the hover color, and when I hover away from the tab, it returns to its original blue color.

Here is a sample of my code used to make the tab turn yellow:

            Dim oFillSelector As New ClassSelector("TabFill") 
            Dim oTabFill As FillPrimitive = TryCast(oFillSelector.GetSelectedElements(Me.tsTabs.SelectedTab)(0), FillPrimitive) 
 
            If oTabFill.BackColor <> Color.Yellow Then 
                oTabFill.BackColor = Color.Yellow 
                oTabFill.BackColor2 = Color.Yellow 
                oTabFill.BackColor3 = Color.Yellow 
                oTabFill.BackColor4 = Color.Yellow 
            End If 


Here is the code I use to return all tabs to their default color:

For i as int32 = 0 to Me.tsTabs.Items.Count -1 
        Dim oFillSelector As New ClassSelector("TabFill") 
        Dim oTabFill As FillPrimitive = TryCast(oFillSelector.GetSelectedElements(Me.tsTabs.Items(i))(0), FillPrimitive) 
 
        oTabFill.ResetValue(FillPrimitive.BackColorProperty) 
        oTabFill.ResetValue(FillPrimitive.BackColor2Property) 
        oTabFill.ResetValue(FillPrimitive.BackColor3Property) 
        oTabFill.ResetValue(FillPrimitive.BackColor4Property) 
Next 

Please let me know what I am doing wrong, as it is quite annoying to have to hover over all the tabs everytime I want to see which ones are really supposed to have a different backcolor.
Nikolay
Telerik team
 answered on 22 Aug 2008
3 answers
132 views
I am noticing some "artifacts" when maximizing or resizing a window using docked panels. There are blocks of dead space that appear temporarily, and one control we are using dances around quite a bit before settling down (it's being redrawn frequently and it doesn't draw quickly).

What can be done about these artifacts? We're using the Q2 2008 codebase.
erwin
Top achievements
Rank 1
Veteran
Iron
 answered on 21 Aug 2008
9 answers
95 views
I have project with RadControls for WinForms used within (docking manager, text boxes, tabstrips, labels, buttons) which was made using Q1 2008 controls. Now after upgrading to Q2 2008 I get following message when entering design view. I have to click through the same dialog 5 times (or so) and then designer shows up. What could be the problem? Any clues?

http://mf.ederon.net/telerik/telerik_glypths.jpg

Daniel
Daniel
Top achievements
Rank 1
 answered on 21 Aug 2008
3 answers
120 views
Hi,

I have a grid that is displayed in RightToLeft Mode
and when i press the Tab key on a cell it passes to the next cell
but when it gets to the last cell on the row it gows up
instead of down.
(without the RightToLeft mode it works fine)

Thanks in advance.
Nikolay
Telerik team
 answered on 21 Aug 2008
2 answers
261 views
any known workaround / hacks to do filtering in the multicolumn combo box, at this point?

I sort of have a working version and wanted to see if anyone else had an implementation.

basically, I pay attention to the cbo.MultiColumnComboBoxElement.TextChanged event. When you type into the box, i grab the text and manually find the items in my collection that fit the text entered, then re-set the combo box data source to the filtered list.

this "works", but has some strange side effects and UI usability problems. for example, i have to manually click the drop down arrow, or use the cbo.MultiColumnComboBoxElement.Editor.ShowPopup();  call, to get the grid to pop up. when i do this with either method, though, the pop up has strange behaviour of auto resizing when i don't want it to (when zero items in list it shrinks, then changing filter and it won't resize larger, so i have to clear the filter, close the pop up, and open it again).

anyone else have a working implementation of filtering for the multi column combo box?
Derick.Bailey
Top achievements
Rank 1
 answered on 21 Aug 2008
1 answer
99 views
Hi :o)

How do I change the value of a column/field that has been inserted using the automatic add new row functionality of the grid?

Many thanks

Tim 
Julian Benkov
Telerik team
 answered on 21 Aug 2008
5 answers
164 views
Hi,

i've got a problem with the default vertical scrolling behavoir when
adding a new row.

My grid shows 4 rows initially, the new row gets added
by bindingsource.addnew().
After the new blank row is created in the grid the vertical scrollbar appears and
the first row gets out of the current view (automatic scroll down).

The height of the grid has enough space for more rows.
The VerticalScrollState is set to AlwayHide.

I don't want that automatic scrolling, what can i do ?

Regards 
Kim
 
Martin Vasilev
Telerik team
 answered on 20 Aug 2008
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Chart (obsolete as of Q1 2013)
Form
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Styling
Barcode
BindingNavigator
PopupEditor
RibbonForm
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?