Telerik Forums
UI for WinForms Forum
1 answer
566 views

Hey Everyone,

I have just updated my WinForms controls to 2022 R1 from 2019 R3.  When i open Visual Studio 2022 and create a new project it all creates succesful however the toolbox seens to still be referencing the old 2019 R3 files.  Also some of the new features such as StepProgressBar are not available.  The particular tool is something that i am very keen to start using and i was wondering if someone can assist me with getting the toolbox updated please.

I have tried the doing a repair of the install as well as the Launch Toolbox Configurator from within Visual Studio however both to no joys.  On the Toolbox Configurator it states that it will close clsoe Visual Studio however this closing isnt happening.

Its also worth noting that the demo applications are showing the correct new latest version and in my installation directory there is only one version.

I look forward to hearing from you.

Thanksin advanced

Luke

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 03 Mar 2022
1 answer
222 views

the gap between checkboxes and their labels should be increase

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 02 Mar 2022
1 answer
438 views
I've successfully set up everything and I'm able to capture traffic just that I'm also getting traffic from my windows machine where I have fiddler installed and acting as a proxy.

How can I config fiddler to only show captured traffic just from my android device?
https://xender.vip/
Moreover, if I've installed the certificate and configured the proxy on 2 different android devices how can I differentiate between the two? Right now the only solution is to turn wifi off on one of the devices.
https://nox.tips/
Is there a way I can see somewhere in the left traffic list stream window or the right Inspectors window and tabs what's the ip of the device that the traffic data belongs to? For example, my android device 1 has 192.168.0.10 and android device 2 has 192.168.0.20. I would like to see somewhere in the request and/or response this IP for the same reason described above - to be able to differentiate traffic captured from one source from the other.
ussop
Top achievements
Rank 1
 updated question on 02 Mar 2022
1 answer
134 views

Hi.

I have a Dock with a few ToolWindows. I'd like to change the default behavior:

- when a ToolWindow is collapsed (AutoHide) I don't want it to show when I hover on it, the user should click on it to show it

- because I only have AutoHide button and no Close button, I want to disable double click which pops up the ToolWindow outside the Dock which you can then close (I don't want that)

- I want to replace the Pin icon

 

Help please :)

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 01 Mar 2022
1 answer
142 views

I have an MDI RadForm with several Menu Items (File, Window, Help etc.)

 

When I open a new child window the Child Menu (Search) is put up in the MDI Menu but in the last position. 

Can I change it to be placed between Window and Help?

I have other Child Form Menu's I would like to do this with as well.


I didn't see how I could order them (Event etc).

 

Thanks 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 01 Mar 2022
1 answer
75 views
I have a Telerik.WinControls.UI.Docking.ToolWindow added to RadDock. I want to use the pin/unpin feature and not the docking feature. I want to disable the contextmenu and not allow user to move around the ToolWindow as well. How do I acheive it?
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 28 Feb 2022
4 answers
832 views

Hello, 

I have a Telerik WinForms project in Visual Studio Professional 2022 and I'm using only a few different Telerik controls. Nevertheless, with each build I have many Telerik .dlls in my bin folders of controls I'm actually not using in my project. How can I remove these unused files? They're not referenced in my project.

Thank you in advance and have a nice day!

Jana

Jana
Top achievements
Rank 2
Iron
Iron
Iron
 answered on 28 Feb 2022
1 answer
100 views
I want to be able to create the 'groups' and in each gro omegle up the 'items' dynamically based on a temp-table like: *def temp-table ttListfield ttList.groups as charfield ttList.items as charindex Gpr is primary unique grou xender ps items.For each ttList by groups by items: .......end. 

 
 
Thank you
enuru
Top achievements
Rank 1
 updated question on 27 Feb 2022
3 answers
238 views

Hi,

I need to use a RadSyntaxEditor in ReadOnly mode and i want to disable the replace functionality while letting the user to search for a specified string.

I've tried to find a way to hide or disable the replace part in the Find Dialog, but I've had no success.

Any suggestion on how can I achieve this ?

Thanks.

A suggestion: It would be nice to have a read only property at the RadSyntaxEditor level that disable everithing that implies a modification to the text (editor, commands, find dialog and so on).

Luca
Top achievements
Rank 1
Iron
 updated answer on 25 Feb 2022
1 answer
86 views

In chart below I had to use 2 category axes to get a trend line to appear in the same zone.

The only problem is that the line series is being drawn behind the stacked bars. I've tried adding axes in the opposite order, added the line series first, then after all the bar series. No difference.
I thought then maybe I could make the pale coloured bars translucent, but the CreateRenderer event isn't being called, I even tested that in a new project, so I gave up on that idea.
Another problem is that I've set the chart to showgrid = true. That's not being shown either.

Can somebody help please?

 

private void CreateChartComponents()
    {
      #region Code
      try
      {
        _categoricalAxis1 = new Telerik.WinControls.UI.CategoricalAxis();
        _categoricalAxis2 = new Telerik.WinControls.UI.CategoricalAxis();
        _linearAxis1 = new Telerik.WinControls.UI.LinearAxis();

        _categoricalAxis1.IsPrimary = true;
        _categoricalAxis2.IsPrimary = true;

        _categoricalAxis1.ShowLabels = false;
        _categoricalAxis2.ShowLabels = false;
        _categoricalAxis2.IsVisible = false;

        _linearAxis1.AxisType = Telerik.Charting.AxisType.Second;
        _linearAxis1.IsPrimary = true;

        chart.Axes.Clear();
        chart.Axes.AddRange(_categoricalAxis1, _linearAxis1, _categoricalAxis2);

        _barSeriesNormal = new Telerik.WinControls.UI.BarSeries();
        _barSeriesUnder = new Telerik.WinControls.UI.BarSeries();
        _barSeriesOver = new Telerik.WinControls.UI.BarSeries();
        _lineSeriesTrend = new Telerik.WinControls.UI.LineSeries();

        _barSeriesNormal.HorizontalAxis = _categoricalAxis1;
        _barSeriesUnder.HorizontalAxis = _categoricalAxis1;
        _barSeriesOver.HorizontalAxis = _categoricalAxis1;
        _lineSeriesTrend.HorizontalAxis = _categoricalAxis2;

        _barSeriesNormal.VerticalAxis = _linearAxis1;
        _barSeriesUnder.VerticalAxis = _linearAxis1;
        _barSeriesOver.VerticalAxis = _linearAxis1;
        _lineSeriesTrend.VerticalAxis = _linearAxis1;

        _barSeriesNormal.CombineMode = Telerik.Charting.ChartSeriesCombineMode.Stack;
        _barSeriesUnder.CombineMode = Telerik.Charting.ChartSeriesCombineMode.Stack;
        _barSeriesOver.CombineMode = Telerik.Charting.ChartSeriesCombineMode.Stack;

        var seriesColor = Color.FromArgb(68, 102, 163);
        var trendColor = Color.Blue;

        _barSeriesUnder.BackColor = Color.AliceBlue;
        _barSeriesUnder.BorderColor = Color.AliceBlue;
        _barSeriesUnder.LegendTitle = "Under Performance";

        _barSeriesOver.BorderColor = seriesColor;
        _barSeriesOver.BackColor = seriesColor;
        _barSeriesOver.Shape = customShape1;
        _barSeriesOver.LegendTitle = "Over Performance";

        _barSeriesNormal.BorderColor = seriesColor;
        _barSeriesNormal.BackColor = seriesColor;
        _barSeriesNormal.LegendTitle = "Expected Performance";

        _lineSeriesTrend.BorderColor = trendColor;
        _lineSeriesTrend.BackColor = trendColor;
        _lineSeriesTrend.LegendTitle = "Trend";

        chart.Series.AddRange(_barSeriesNormal, _barSeriesUnder, _barSeriesOver, _lineSeriesTrend);
        chart.ShowGrid = true;
      }
      catch (Exception err)
      {
        Log4Net.Log.Error(err);
        throw;
      }
      #endregion
    }// function

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 25 Feb 2022
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
Diagram, DiagramRibbonBar, DiagramToolBox
GanttView
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
StatusStrip
CheckedListBox
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
DataEntry
ScrollablePanel
ScrollBar
WaitingBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Barcode
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
NavigationView
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
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
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?