Hello community!!!
I am working on a small project with a "RadForm" which contains a "RadPageView". This "RadPageView" has been set to "NavigationView" mode. It contains four pages (RadPageViewPage) and one of them is "Settings" page.
What I am trying to do is...
When user makes any change on settings page and try to change page, takes a message. If user choose to save changes, program saves changes. Else just goes to clicked page.
My problem is...
As you can see in my code, I want user to remain in settings page when choose to save changes ( Main_radPageView.SelectedPage = Settings_radPageViewPage; ). In my code, program saves the changes but it goes to the page which clicked before!!!
private void Settings_radPageViewPage_VisibleChanged(object sender, EventArgs e)
{
if (!Settings_And_SettingsFields_AreEqual())
{
DialogResult Dialog_Result = RadMessageBox.Show(this, "You have make changes on settings. Do you want to save them?", "Message", MessageBoxButtons.YesNo, RadMessageIcon.Info);
if (Dialog_Result == DialogResult.Yes)
{
// Code...
Main_radPageView.SelectedPage = Settings_radPageViewPage;
}
else
{
// Code...
}
}
}
I did a search and found this thread from... 13 years ago: https://www.telerik.com/forums/radmessagebox-focus-on-buttons-in-mdi-app
Wasn't sure if I should necro it or not, but regardless, is there a way around this? For example, when I do a .Show on it I expect it to have focus and also that a button on there have focus. Especially if its just an "ok" button, as with the default .NET msgbox I could just hit the spacebar to continue. As it is, you HAVE to use your mouse to select the button.
Also, there's no TAG for the radmessagebox here on the forum so I used "messageBox"

When I open a solution in Visual Studio, it often goes into a non-responsive state, with the following report:
The product I use is Telerik WinForm and it is in Trial status.
The Korean message below is translated into English as follows.
"This may cause Visual Studio to become unresponsive. Disabling extensions can improve your experience. Frequency: 6 reports from last week."
Hello, I am developing a RFID RTLS map that uses an API to obtain a floorplan image, zone polygon coordinates and item X/Y location. I am trying to use the Map control with the LocalMapProvider however the background image is being duplicated when zooming and scrolling. I understand why this is happening. Also all of the properties and functions in the map control should work perfectly. The problem is the background image. Since I only have a single static image is the Map control the best control to use? Can I force the map control to not replicate images and force the polygon points XY to start based on the top left of the image? Mind you the item location will need to be updated in real time so I wasn't sure if using a report viewer would be the ideal solution.
Thoughts?
Brian


Hello community!!!
I want to change the color of "radWaitingBar" dots programmatically.
I tried something like this (I found it into my form designer) but with no luck...
((Telerik.WinControls.UI.WaitingBarSeparatorElement)(this.PatchSwitch_radWaitingBar.GetChildAt(0).GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.FromArgb(121, 191, 80);Any idea how can I do this?
Hi Telerik,
Trying to find trackball behavior, but I actually need to display a horizontal line, that crosses the given ScatterLineSeries and starts at the corresponding vertical axis. (Attached an example image.)

Hello,
Is it possible to prevent RadTreeView entering edit mode when you click on a selected node? We would still like nodes to be editable but only when the user presses F2 or when we programmatically enter edit mode.
Thanks,
Hayley

Hello,
I haven't seen this in the demos or documentation (yet?). is it possible to display bars, lines or sparklines in the cells of a pivot grid ? is this supported by a public method or property? can this be programmed? is this difficult or extensive?
thanks in advance
Rolf Kaleveld

Telerik UI for WinForms controls used to be automatically added to Visual Studio's Toolbox during the installation process when using .NET 2.0 (up to 4.8) Framework in your project. This means that the Toolbox population relies on the Telerik WinForms version available in the Global Assembly Cache.
With the introduction of .NET Core/.NET 5 and the WinForms designer, the Toolbox configuration doesn't rely on the GAC anymore and it is not necessary to have an installation of the Telerik UI for WinForms suite. The Toolbox version depends on the installed NuGet package:
https://docs.telerik.com/devtools/winforms/core/core-toolbox-version
There is a known issue that any UserControls/ custom controls don't show up in the toolbox for a VB project with .NET6. Even the RadControls are not loaded in the toolbox.
This seems to be a known issue introduced in Visual Studio 2022 17.3 only for VB project with .NET6. Microsoft are currently working on the issue and I believe that an update will be introduced with the fix: https://developercommunity.visualstudio.com/t/Custom-and-User-Controls-not-shown-in-To/10118197
