Telerik Forums
UI for WinForms Forum
3 answers
403 views

For several projects I need to reuse the old version of Telerik (Q1 2010), and I need to be able to use them in Visual Studio 2012. The installer wants to integrate Telerik solely with VS until 2010. When installing Q1 2010, the VS.2012 designer displays the forms properly, but does not allow to change them/move - nothing. 

I can only add the Telerik controls to the Toolbox by hand - and that's ok, but I still want to be able to use them in the project.

Is there any way to install Telerik older controls to Visual Studio 2012?

Best regards

Yana
Telerik team
 answered on 29 Jun 2015
2 answers
164 views

Is there a way to allow users to press a key to quickly navigate to rows beginning with that letter?

(Assuming that users would be searching on the first (text) column of the grid and that this column is sorted alphabetically).

Thanks,

-Lou

Lou
Top achievements
Rank 1
 answered on 29 Jun 2015
3 answers
166 views

Hello, 

How can I change the AllowedRoles of Fields in a Pivotgrid.

Best regards

Thomas

Hristo
Telerik team
 answered on 29 Jun 2015
2 answers
397 views

Hi,

I am trying to set an initial path in a browse-for-folder editor. I have tried:

rbrIISNewWebsiteLocation.Text = Application.StartupPath;

and
(rbrIISNewWebsiteLocation.Dialog as FolderBrowserDialog).SelectedPath = Application.StartupPath;

 

but in both cases the text displays '(none)' and when I click the browse button is opens at the root of my computer?

Al
Top achievements
Rank 1
Iron
Iron
Iron
 answered on 29 Jun 2015
7 answers
243 views
Hey all, forgive me if this in the wrong forum (and please move this thread into the right forum if it is).  I have a question in regards to using CodedUI with RadControls.  In our application we are using RadGridViews all over the place, and I want to drive my CodedUI tests by the data in those rows (example, click on the row that has the text "xxxxxx").  

What the recorded test is doing now, is finding the RadGridView and then clicking on specific points associate with the RadGridView which represent the row that wants to be clicked.  The way I want to structure my tests (since these rows can change with new builds) is to assign the RadGridView to a WinTable, then by looping through the rows in that WinTable, click on the one that has the text I want to click.  As I said, the WinTable doesn't have the text of the row in it.  It just has the name of the row ("This is a row with Index x"), which is of no use to me, because the index of the row might change as stated above.

I've attached a screen shot of what my CodedUI Inspector looks like, so you can see all of the property values.  In that screen shot, I would've expect "Value" under "Control Specific" to be the combined strings of the cells in the row.

Are there any works around this?  Or is there some other function I should be using to view the text inside of the row?
Peter
Telerik team
 answered on 29 Jun 2015
1 answer
456 views

I am excited to see that you have added the RadToggleSwitch and after viewing the different types of appearances in the animated gif on the website; I encountered two issues.

First, I cannot find any documentation on it - except this (http://www.telerik.com/help/winforms/buttons-toggleswitch-overview.html)

Which doesn't really tell you anything - and I realize it's new and you still need to update the website...

 But the second thing is that I cannot see where one changes the appearance of the ToggleSwitch... unless I'm completely overlooking something... Is there an appearance dropdown combo or something that allows one to change the look of the switch as shown in the link above?

 Thank you in advance.

Ralitsa
Telerik team
 answered on 25 Jun 2015
1 answer
97 views

I'm using v2015.1.331.40 and if the series I feed my pie chart has 0 for all values AND I have ShowSmartLables = true, then my code just hangs when it tries to render the chart. 

 

private static void ThisChartHangs()
        {
            Telerik.WinControls.UI.RadChartView chart = null;

            try
            {
                chart = new Telerik.WinControls.UI.RadChartView();
                chart.AreaType = Telerik.WinControls.UI.ChartAreaType.Pie;

                chart.Width = 360;
                chart.Height = 360;
                chart.ShowSmartLabels = true;

                var series = new Telerik.WinControls.UI.PieSeries();
                
                for (int x = 0; x < 8; x++)
                {
                    series.DataPoints.Add(new Telerik.Charting.PieDataPoint(0.0, "Type " + x.ToString()));
                }

                chart.Series.Add(series);

                using (var bmp = new System.Drawing.Bitmap(chart.ClientSize.Width, chart.ClientSize.Height))
                {
                    chart.DrawToBitmap(bmp, chart.Bounds);

                    using (var stream = new System.IO.FileStream(@"c:\temp\NeverRenders.png", System.IO.FileMode.Create, System.IO.FileAccess.Write))
                    {
                        bmp.Save(stream, System.Drawing.Imaging.ImageFormat.Png);
                    }
                }
            }
            catch (Exception ex)
            {
                throw;
            }
            finally
            {
                if (chart != null)
                {
                    foreach (var series in chart.Series)
                    {
                        series.DataPoints.Clear();
                    }

                    chart.Dispose();
                }
            }
        }

Hristo
Telerik team
 answered on 25 Jun 2015
1 answer
242 views

Greetings,

I have read/researched in this forum and the documentations but can't find what I need.  So my question:

In treeview control (Both in winform & WPF), do we have option to have multiple selections for nodes?  Shift + click or Ctrl + click shortcuts would be super helpful.

 

Thanks

John.

Stefan
Telerik team
 answered on 25 Jun 2015
1 answer
136 views

I have some old project i did in c# wvidusl studio 2012 pro.

All i have left is the exe file.

I tried to use the Telerik to decompile and get my source code but when i'm adding the code to visual studio and try to build the solution i'm getting a lot of errors all about that there is a square with question mark inside.

I could go and fix error by error but there more then 5000.

Almost every variable replaced with square and question mark inside.

 

What could it be ? Any way to fix it ? The problem is with the Telerik ?

Tsviatko Yovtchev
Telerik team
 answered on 24 Jun 2015
3 answers
337 views

I have multiple LineSeries that are tied to a common DateTimeContinuousAxes for X and multiple LinearAxes for Y.

So each LineSeries is tied to the common DateTimeContinuousAxis .

Each LineSeries may have its own dedicated Linear Axis OR may share a linear axis with other series.

Its the series that share both x and y axes that are confusing to the user.

To make this visually clear to the user, I have set the color of these line series and the corresponding shared Y axis color to match, so that its obvious that series A, B and C share the same Y axis (say "VOLTS").

 

But now I have multiple series with the same color. So I need to have the points for each individual series have a different shape so you can easily discriminate between the series.

For example, Series A, B and C all share a common Y Axis, and all three are green in color, but Series A points are a Green Triangle, Series B is a Green Square and Series C is a Green Circle.

 

Seems pretty straight forward...right?

 I know I can do this on the ScatterSeries, but I see no way to set the Point Shape for a Point in LineSeries. Some thing similar to the example below...

 

      private void ApplyShapeToPoints(ElementShape shape) 
        { 
            ScatterSeries series = this.radDropDownListSeries.SelectedValue as ScatterSeries; 
 
            foreach (ScatterPointElement point in series.Children) 
            { 
                point.Shape = shape; 
            } 
        } 

 

But I cant use a scatterseries because my data is time based....

 

Any ideas?

 

MG

Dimitar
Telerik team
 answered on 24 Jun 2015
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)
Form
Chart (obsolete as of Q1 2013)
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
VirtualGrid
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
SplitContainer
Documentation
Map
DesktopAlert
CheckedDropDownList
ProgressBar
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
CollapsiblePanel
LayoutControl
ShapedForm
SyntaxEditor
Wizard
TextBoxControl
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
NavigationView
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
SplashScreen
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?