Telerik Forums
UI for WinForms Forum
1 answer
553 views

Hi, 

I am trying to disable/hide the button to show the "Start Menu" but I am not able to do it, I have tryed for example to put in "StartmenuWidth property "0" and choose no imagen but the control always show the "Telerik" logo.

How could I diseble this button/icon?

 Thanks

Francisco

Hristo
Telerik team
 answered on 04 Apr 2016
1 answer
152 views

Hi

I have a RadBrowseEditor on a form with its DialogType set to FolderBrowseDialog.

At runtime, if I click the browse button to open the "Browse For Folder" dialog and click the "Make New Folder", type a name for the newly created folder BUT DO NOT PRESS THE ENTER KEY and click the OK button, the Value is set to "New Folder" instead of the name I have typed.

How to fix that?

Hristo
Telerik team
 answered on 04 Apr 2016
5 answers
223 views

Hi Telerik Team

I'm facing another problem using RadMaskedEditBox. I'm trying to disable the validation using a checkbox. If the checkbox is checked, the EditBox uses MaskType.Regex and a regex mask. If the checkbox is unchecked, it should not validate the control anymore. I'm clearing Mask property and set MaskType to None. But the control is always validating. To reproduce this behaviour you can do the following:

1. Add a RadMaskedEditBox and a RadCheckbox to your form.
2. Add ToggleStateChanged event to the RadCheckbox.
3. Use the following code:

private void radCheckBox1_ToggleStateChanged(object sender, StateChangedEventArgs args)
{
    if (args.ToggleState == Telerik.WinControls.Enumerations.ToggleState.On)
    {
        radMaskedEditBox1.Mask = "^[0-9]{5}$";
        radMaskedEditBox1.MaskType = MaskType.Regex;
    }
 
    else if (args.ToggleState == Telerik.WinControls.Enumerations.ToggleState.Off)
    {
        radMaskedEditBox1.Mask = "";
        radMaskedEditBox1.MaskType = MaskType.None;
    }
}

4. Start the application
5. Check and uncheck the checkbox (now ToggleStateChanged event was fired)
6. Type some letters to the RadMaskedEditBox (e.g. "aaa")
7. Press tab

The error icon right next to the RadMaskedEditBox appears. But the MaskType is set to none and the Mask property is also empty. The documentation about this control says the following:

  • None: the control acts like a text box.

Am I doing something wrong? Do I have to remember something? Or is this a bug?

Regards,
Danilo

Dimitar
Telerik team
 answered on 04 Apr 2016
1 answer
137 views

I am facing this issue Exception of type system.outofmemoryException.

I have approx 1 Cr record and after binding 2 lac of record system throws this error. First throws the error message than after display record in the radgridview.

I don't know but is there any limitation of displaying no of rows without paging?

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 04 Apr 2016
2 answers
287 views

Hi,

I'm using Visual Studio Builder to customize the GroupBox control.

I want to add a border under the text of the groupBoxHeader with a width of all the groupbox (not only the text area).

I actually succed adding a border under the text but it's width isn't good for me.

I have added an attach file to explain what i want to do.

Is it possible ?

Cedric

Cedric
Top achievements
Rank 1
 answered on 01 Apr 2016
1 answer
289 views

hi team,

I have an issue about custom rad list view. One radio button has its lots of check box(s). By default, the first radio is checked (or we can checked any radio button). However, if I scroll by mouse or vertical bar, the check box that we checked before is not checked correctly. Thanks.

Please refer to the link to get my source code : https://www.dropbox.com/s/wvh44iwfv7fqgxz/CustomControl.zip?dl=0

Chuong

 

Stefan
Telerik team
 answered on 01 Apr 2016
3 answers
95 views

I used RadPrindPreview for RadPrintDocument associated to a RadGridView to export data,

but in Version 2015.2.728.40 it worked fine

but the new Version 2016, some final pages are missing.

I tested with using radgridview1.DataSource = list, using SummaryItem and without,

every time it prints the pages, but some pages are missing.

 

Example:

 RadPrintPreviewDialog dialog = new RadPrintPreviewDialog();
            dialog.Document = this.radPrintDocument1;
            dialog.ShowDialog();

 

Printing 20 pages, it just show 19;

Printing 1000 pages, it just show 96;

 

Did this "RadPrintDocument" and "RadPrintPreviewDialog ", suffer any changes?

Are there any changes

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 Mar 2016
3 answers
222 views

Hi all,

 

I created a data navigation bar as a user control and I need to add it in a RadStatusStrip.

I know how to do this with the basic StatusStrip using ToolStripControlHost, but I don't know if it's doable and didn't find any way to make the same thing with the telerik version.

Also, I'd like to avoid putting the RadStatusStrip directly into a user control as it may have a different content depending on the form used.

Any help on how to achieve this would be appreciable.

Using  : VS2013 C#

Best regards

Dimitar
Telerik team
 answered on 31 Mar 2016
2 answers
116 views
When setting the Text property of a RichTextEditor control with <html> formatting, the Size property is evidently being ignored. Other tags such as <b>, <br>, and <u>, appear to be working as expected.
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 Mar 2016
3 answers
148 views

Dear Team.

 

I am working with  RadPivotGrid and RadChartView

I want to change from bar chart to line chart at runtime. However, when I run the line e.Series = new LineSeries(); the chart changes to line ine, but the legend lables dissapear.

Can you please help.

Thanks,

Nishan

 

 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

using Telerik.WinControls.UI;
using Telerik.Charting;
using Telerik.WinControls.UI.Export;

namespace SizeFreq13c
{
    public partial class RadForm1 : Telerik.WinControls.UI.RadForm
    {
        public RadForm1()
        {
            InitializeComponent();
        }

        private void RadForm1_Load(object sender, EventArgs e)
        {
            // TODO: This line of code loads data into the 'pELAGOSDataSet.Rep_SizeC' table. You can move, or remove it, as needed.
            try
            {
            this.rep_SizeCTableAdapter.Fill(this.pELAGOSDataSet.Rep_SizeC);
            radChartView1.DataSource = radPivotGrid1;
            // This event handler for pivot chart update completed
            this.radPivotGrid1.ChartDataProvider.SeriesCreating += new Telerik.WinControls.UI.SeriesCreatingEventHandler(this.ChartDataProvider_SeriesCreating);
            this.radPivotGrid1.ChartDataProvider.UpdateCompleted += new System.EventHandler(this.ChartDataProvider_UpdateCompleted);

            }
            catch (Exception Ex)
            {
                MessageBox.Show("Most Lilely case for this error is Access is locked. Try closing and opening Access \n \n" + Ex);
            }
            

        }



        void ChartDataProvider_UpdateCompleted(object sender, EventArgs e)
        {
                foreach (CartesianSeries series in this.radChartView1.Series)
                {
                    switch (this.comboBox1.Text)
                    {
                        case "Cluster":
                            series.CombineMode = ChartSeriesCombineMode.Cluster;
                         break;

                        case "Stack":
                            series.CombineMode = ChartSeriesCombineMode.Stack;
                            break;

                        case "Stack100":
                            series.CombineMode = ChartSeriesCombineMode.Stack100;
                            break;

 
                    default:
                            series.CombineMode = ChartSeriesCombineMode.Cluster;
                            break;
                    }
                }
            }

        void ChartDataProvider_SeriesCreating(object sender, Telerik.WinControls.UI.SeriesCreatingEventArgs e)
        {
           e.Series = new LineSeries();
       
        }

        private void button1_Click(object sender, EventArgs e)
        {
            {
                PivotExportToExcelML exporter = new PivotExportToExcelML(this.radPivotGrid1);
                exporter.ExportVisualSettings = true;
                exporter.SheetName = "Sheet";
                string fileName = "c:\\IOTC\\pelagos\\VesselActivity_Catch.xml";
                exporter.RunExport(fileName);
                try
                {
                    exporter.RunExport(fileName);
                }
                catch (Exception Ex)
                {
                    MessageBox.Show(Ex.Message);
                }
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            string filePath = "c:\\IOTC\\pelagos\\SizeFrequency.png";
            this.radChartView1.ExportToImage(filePath, this.radChartView1.Size, System.Drawing.Imaging.ImageFormat.Png);

        }

        private void splitContainer2_Panel1_Paint(object sender, PaintEventArgs e)
        {

        }
//update the chart when the combo is changed
        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            this.radPivotGrid1.ChartDataProvider.UpdateChartData();

        }
    }
    
}

Dimitar
Telerik team
 answered on 29 Mar 2016
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
WaitingBar
GroupBox
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
NavigationView
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
TreeMap
StepProgressBar
SplashScreen
Flyout
Separator
SparkLine
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?