Telerik Forums
UI for WinForms Forum
1 answer
102 views
Hi,

I just downloaded the WinControls Q1 2010 SP2. When I run the example I see the animated text lines flying from left to right listing the highlighted features of the release, then the "Purchase" button zooms out to location. 
I wish to reproduce such animations using these controls that but has problems finding relative code in the examples project source. Coudl you please help?

Thanks
Stefan
Telerik team
 answered on 24 Jun 2010
1 answer
98 views
Hi,

Is there way to get TreeNodeUI of RadTreeNode?
The code below works only for root nodes, because TreeViewElement.Items returns only root items.

 

private TreeNodeUI FindNodeUI(RadTreeNode node)

 

{

 

TreeNodeUI result = null;

 

 

if (node != null)

 

{

 

foreach (TreeNodeUI item in node.TreeView.TreeViewElement.Items)

 

{

 

if (item.AssociatedTreeNode == node)

 

{

result = item;

 

break;

 

}

}

}

 

return result;

 

}



Victor
Telerik team
 answered on 24 Jun 2010
1 answer
59 views
In day view, if i scroll down continuously, at the end of scrolling, i need  it goes to the second day. Same case with week view and month view..

Thanks
Shinu
Dobry Zranchev
Telerik team
 answered on 24 Jun 2010
2 answers
78 views
hi, i am using this code to organize my chart but there is a problem and it is: the first sere name does not shown!!
here is my code:
int i=0
            radChart1.Series.Clear(); 
            foreach (DataRow row in dt.Rows) 
            { 
                radChart1.Series.Add(new Telerik.Charting.ChartSeries(row["ykol_name"].ToString().Trim(), Telerik.Charting.ChartSeriesType.Bar)); 
                radChart1.Series[i].AddItem(Convert.ToDouble(row["cnt"]), string.Format("({1}({0}", row["cnt"],row["ykol_name"].ToString().Trim())); 
                i++; 
            } 
how can i fix this problem?
thanks


Velin
Telerik team
 answered on 24 Jun 2010
3 answers
162 views
Hi,

I working on creating the themes to the controls using the Visual Style Builder.When i'm working with rad groupbox,i'm not able to apply the them to the control.

For the node GropuboxContent[ check screenshot],in 'elements' dockwindow i have give all the backcolors as some lightblue color,but still it is taking the first background color [backcolor] as 'Control' color and applying it to the middle part of groupbox.but i you can observe i have given all the backcolors as blue.

when we check it in Visual Style builder,it is showing background as user given color[blue],when it is applied in the my application then it is showing differently.

Also applied the 'Gradient Style' as 'Solid',when this is applied the middle part is occupied with 'System Control' color not blue.

Please check the attached screenshot and reply ASAP.

Thank you,
Pradeep
Deyan
Telerik team
 answered on 23 Jun 2010
1 answer
160 views
Hi,

I'm getting an error "cannot convert type system.windows.forms.control to telerik.wincontrols.ui.radcarousel" when I try to convert a control to a radcarousel. Basically, this is the code (some code is missing but are irrelevant for this example):

foreach (Control control in listOfControls)
{
    if (c.getType() == button)
        listOfNames = control.Name;

    if(c.getType() == ToolStrip)
    {
        ToolStrip t = (ToolStrip)control;                         //here I have no problem when I try to cast a control to a ToolStrip control
        foreach (ToolStripItem tsi in t.Items) {...}
    }

    if(c.getType() == RadCarousel)
    {
        RadCarousel r = (RadCarousel)control;             //here I get the error
        foreach (RadButtonElement rbe in r.Items) {...}
    }
}


Thanks
Victor
Telerik team
 answered on 23 Jun 2010
1 answer
305 views
Good morning.
    Is there a method to prevent horizontal scrollbar to appear in your radListBox control? I tried with the Autoscroll property, but True or False it's the same. My problem is the following: I have a radListBox docked (fill) in a split container. If a user changes the width of the split container, may cause the horizontal scrollbar to appear. When it appears, the vertical scrollbar automatically appears, too, and it's ugly to see. The vertical scrollbar should remain visible instead, if it was visible before user resizing.

Thank you
Franco
Stefan
Telerik team
 answered on 23 Jun 2010
1 answer
121 views
Hello sir,

I m install  Redcontrols for window form q2 2008
but i reset  my VS 2008 toolbox and not show the redcontrols
now tell me how to add again add redcontrols in my toolbox

i check my installed redcontrols is working properly but not show in my VS 2008 toolbox
please help me
Stefan
Telerik team
 answered on 23 Jun 2010
1 answer
85 views
Hello,
I am currently investigating a memory leak issue in an application using the Telerik Winforms controls version Q2 2008. I think a possible source of the leak to be the elementUnderMouseMonitorTimer field of the ComponentInputBehavior. Was this a known issue for the Q2 2008 release? And if so, what can you recomend me? We have a full telerik license until autumn 2010, so we have access to newer releases but we haven't upgraded yet because the design and functionality of the radcontrols library has changed a lot since q2 2008, and we don't have the time necessary to upgrade the full application.

Deyan
Telerik team
 answered on 23 Jun 2010
1 answer
117 views
Good morning.
I have a problem with the radPanelBar. I use VB.net 2008 and RadControls Q1 2010 SP2. You can see the problem with a small test application:

1. Create a new Windows Form Application.
2. Insert a RadDock. Dock = Fill.
    Dock New Window To Left (ToolWindow1).
3. In the ToolWindow1, insert a RadPanelBar control. Dock = Fill. GroupStyle = ExplorerBarStyle.
    Add 6 items. A vertical scroolbar appears, correct.
4. Run the project.

When the project is running, try to resize the width of the ToolWindow1. If you increase the size, you see that the RadPanelBar doesn't resize, although it is docked to fill. If you decrease the size, the RadPanelGroupElement shows correctly the arrows, but the vertical scrollbar disappears. Click on the arrows and the vertical scrollbar appears again.
How can I solve this problem?

Regards
Franco
Stefan
Telerik team
 answered on 23 Jun 2010
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
ProgressBar
CheckedDropDownList
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
Barcode
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Licensing
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
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?