Telerik Forums
UI for WinForms Forum
2 answers
265 views
What I'm doing in my code is generating a lot of RadChartView objects, saving them to disk, and then trying to dispose of the chart object. If I attempt to just do a chart.Dispose() when I'm done with the chart, memory related to the series data never gets released. If I clear the series' data points myself, then memory is freed when I finally do the chart.Dispose. Rename the attachment to (.7z) to see my example project. 
Ivan Petrov
Telerik team
 answered on 02 Mar 2015
1 answer
315 views
First I admit that I'm a newbie regarding UI design in Win8.1 - last time I did UI it was in the time of VB6 - so I may make stupid mistakes. But I've now played around for more than 4 hours, searching this forum and google'd a lot and I don't find some answers.

I'm working on VS2013, uptodate Telerik for WinForms, Win8.1 64 bit. My application is a simple test application, no custom code, just using the VS design view and Telerik UI elements. The png/icon I use are from "icon8.com" - downloaded in various pic sizes, currently I'm using the 50x50 pixel size. I imported the stuff into the resources file AND I also used a ImageList property after my first run didn't work out.

My requirement: simple. A good looking button with a simple image on it. Nothing fancy.

What I learned: if I use the image property, the image is not rescaled to the button size.
=> What I don't understand: what's the meaning of the "ImageScalingSize" parameters? I can't find an explanation in the documentation, and I don't see any effect on the bitmap if I change values (using the image property). Is there any other component using it? Should they rescale the image?

What I tried: I used (both the images from the resource file as well as the image from the ImageList) at the BACKGROUNDIMAGE parameter and IN BOTH CASES the image doesn't shop up on a Telerik RadButton. If the use the normal Windows Forms button, the image shows up. I have no idea why this won't work. Is it something with the resolution, the color depth in the PNG, the transparency setting? I tried various scaling settings (tile, stretch, center, zoom), no effect. I have no clue.

Regarding "SmallImageList": I haven't found any explanation when the SmallImageList is used. Propably a newbie question - any doc on this?

Kind regards,
Andrew
Stefan
Telerik team
 answered on 02 Mar 2015
1 answer
232 views
hello i have the project in the visual basic 2012 with telerik controls, but in the last days the control command bar doesnt show me the popup menu, as well other controls i cant move with the mouse, why happend this, in fact the control blink and doesnt allow chooice option.

thanks.
Stefan
Telerik team
 answered on 02 Mar 2015
2 answers
56 views
Hi,
I'm trying to print/preview the complete results from a merge - the code below only outputs the currently selected merge record. I can scroll thru all merged records on screen but not print or preview the "whole" document. Dim provider As IDocumentFormatProvider = New DocxFormatProvider()
                Dim openDialog As New OpenFileDialog()
                openDialog.InitialDirectory = Session.WorkFolder & "\letters"
                'openDialog.Filter = "Documents|*.docx"
                openDialog.Multiselect = False
                Dim dialogResult As DialogResult = openDialog.ShowDialog()
                If dialogResult = System.Windows.Forms.DialogResult.OK Then

                    Using stream As Stream = openDialog.OpenFile()
                        RichTextEditor.Document = provider.Import(stream)
                    End Using

                    RichTextEditor.Document.MailMergeDataSource.ItemsSource = WkLetters
                    RichTextEditor.UpdateAllFields(FieldDisplayMode.Result)
                    RichTextEditor.MailMerge(True)

RichTextEditor.PrintPreview

                End If



Any help would be greatly appreciated.

Regards,

Lee.
Stefan
Telerik team
 answered on 02 Mar 2015
3 answers
127 views
Does anyone have any ideas what might be causing this error?

System.NotSupportedException occurred
  HResult=-2146233067
  Message=CultureInfoConverter cannot convert from (null).
  Source=System
  StackTrace:
       at System.ComponentModel.TypeConverter.GetConvertFromException(Object value)
  InnerException: 

My code looks like this:
var m = new MemoryStream();
this.gridContent.SaveLayout(m);
Stefan
Telerik team
 answered on 02 Mar 2015
6 answers
117 views
If you copy a hyperlink from Outlook (or any Office app I expect) and paste it into a RichTextEditor box then try to modify the text... the control will crash.

To duplicate this bug:

1. Create a hyperlink in Outlook to \\server\folder1\folder2\folder3\somefile.txt

2. Copy the hyperlink and paste it into a RichTextEditor box.

3. Place your caret after the \ before somefile.txt

4. Press backspace until the control crashes (takes less than 20)

The control will start to act very weird with overlapping text before it finally crashes with the following error:

-----------------
Index was out of range. Must be non-negative and less than the seize of the collection.

at System.ThrowHelper.ThrowArgumentOutOfRangeException()
   at System.Collections.Generic.List`1.get_Item(Int32 index)
   at Telerik.WinControls.RichTextEditor.UI.TextBlock.DrawRunGDI(Run run, RunLayoutInfo runInfo, Single fontSizeScale, PointF location, NativeTextRenderer renderer)
   at Telerik.WinControls.RichTextEditor.UI.TextBlock.DrawGdi(Single angle, Graphics nativeGraphics, Single fontSizeScale)
   at Telerik.WinControls.RichTextEditor.UI.TextBlock.PaintElement(IGraphics graphics, Single angle, SizeF scale)
...
-----------------

I've tried setting AutoInsertHyperlinks to false but it still crashes.  Any ideas?

Thanks!
Michael
Top achievements
Rank 1
 answered on 27 Feb 2015
3 answers
193 views
I have a radChartView and also a radGridView. I want to put Chart View on new row of Grid View. How can I perform this ?
here is my Chart View sample data code :
var series = new LineSeries {LegendTitle = "تعداد امانت بر اساس ماه", BorderWidth = 2};
        series.DataPoints.Add(new CategoricalDataPoint(10, "Jan"));
        series.DataPoints.Add(new CategoricalDataPoint(30, "Feb"));
        series.DataPoints.Add(new CategoricalDataPoint(22, "Mar"));
        series.DataPoints.Add(new CategoricalDataPoint(15, "Apr"));
        series.DataPoints.Add(new CategoricalDataPoint(40, "May"));
        series.DataPoints.Add(new CategoricalDataPoint(80, "Jun"));
        series.DataPoints.Add(new CategoricalDataPoint(10, "Jul"));
        series.DataPoints.Add(new CategoricalDataPoint(30, "Aug"));
        series.DataPoints.Add(new CategoricalDataPoint(22, "Sep"));
        series.DataPoints.Add(new CategoricalDataPoint(15, "Oct"));
        series.DataPoints.Add(new CategoricalDataPoint(40, "Nov"));
        series.DataPoints.Add(new CategoricalDataPoint(80, "Dec"));
        this.radChartView1.ShowSmartLabels = true;
        radChartView1.ShowLegend = true;
        this.radChartView1.Series.Add(series);

I try this code but a row was added without any value :
this.radGridView1.Rows.Add("Sample", radChartView1);
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 27 Feb 2015
3 answers
109 views
hi,

i am trying to inherit the RadGridView control and create a predefined list of columns.

if i create the columns in the constructor of the control and using it in a form (winform app), the visual studio designer will add the same columns a second time from the InitializeComponent() method.

what is the suggested way to do this?

thank you,
alez
Stefan
Telerik team
 answered on 27 Feb 2015
2 answers
107 views
Why deleted my post? I need the help! Please! How to change background color item, where value = 1?
Stas
Top achievements
Rank 1
 answered on 27 Feb 2015
7 answers
421 views
I am vs 2010 user and vb developer. I have seen Telerik Rad Controls and how they perform and can only say that this is an amazing developer's tool! My problem though, is the fact that I already have 90% of my vb application in vs2010 designed using winform controls and was wondering whether there was an easy way to convert the already existing controls and forms to telerik?

Thanks,
Fawzieh
Stefan
Telerik team
 answered on 27 Feb 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)
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
CheckedDropDownList
ProgressBar
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
Styling
Barcode
BindingNavigator
PopupEditor
RibbonForm
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
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
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?