Telerik Forums
UI for WinForms Forum
2 answers
116 views

I have a grid populated from a base class. The base class has a enum property to identify what type of derived object it is. When the user adds a new row and changes that enum value, I need to replace the object with the associated derived type. Example:

public enum ObjectType
{
    Base,
    ChildA,
    ChildB
}
 
public class Base
{
    public ObjectType Type { get; set; }
}
 
public class ChildA : Base { }
 
public class ChildB : Base { }

The grid will initially create a new row with a DataBoundObject of Type 'Base'.

When the the user changes the 'ObjectType' column to 'ObjectType.ChildA' I need to replace the row's DataBoundObject with a new instance of 'ChildA'.

The grid's DataSource is set to a BindingSource; who's DataSource is set to BindingList<Base>.

I tried to replace the object in the BindingList. Then set the BindingSource.DataSource to the updated BindingList. And then call BindingSource.ResetBindings(false) to updated the GridView. But I receive a NullReferenceException.

How can I replace the Row's DataBoundObject with a derived object?

Paul
Top achievements
Rank 1
 answered on 06 Jan 2016
4 answers
956 views
Hi Telerik team,


For the pie chart, I saw that Telerik tools that have smart labels(refer to the attachment with the red color box), there are few features like draw connecting line and labels border, sync labels border color and line color. But I can't find it in the property of visual studio for chartView, please advise. Is it need to write back end coding instead of using property to use those features?
Apart from that, the label(refer to left red color box of attachment) show in my pie chart is by percentage(%) but the label show in Telerik is in character for each categories, may I know how to set it?


Best regards,
Nicholas
John
Top achievements
Rank 1
 answered on 06 Jan 2016
2 answers
177 views
Hello,

When I add a RadButtonElement to my alert, it causes the ContentImage to be cut off at the top of the button element, despite the button being on the other side of the alert. See the attached images as an example.

Is there a BringToFront event (or something along those lines) for ContentImage?

Thanks!
Ryan
Top achievements
Rank 1
 answered on 06 Jan 2016
2 answers
204 views

I have a form that loads an existing pdf into a radPdfViewer. The user then has the option to move this file to a new location, with a new file name and then delete the original file.

I am able to load and view the original pdf. I am also able to export this file to a new location with a new file name. The problem occurs when I attempt to delete the original file. I am receiving the error message "The process cannot access the file ... because it is being used by another process."  Obviously I am not disposing of something properly, but I am unsure of the correct steps to take.  Any help would be appreciated.

I am using Visual Studio 2015 and the following code:

Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load

        RadPdfViewer1.LoadDocument(OriginalFileName)
    End Sub

    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Dim exportProvider As New Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.PdfFormatProvider
        Dim NewFile As RadFixedDocument = exportProvider.Import(System.IO.File.OpenRead(OriginalFileName))
        Dim out As System.IO.Stream = System.IO.File.OpenWrite(NewFileName)

        exportProvider.Export(NewFile, out)
        out.Flush()
        out.Dispose()
        out.Close()
        NewFile = Nothing
        exportProvider = Nothing
        RadPdfViewer1.UnloadDocument()
        System.IO.File.Delete(OriginalFileName)            ----> this is the line that gives the error
    End Sub

sandra
Top achievements
Rank 1
 answered on 04 Jan 2016
12 answers
273 views
In my project I need change checkboxes for button in CheckedDropDownList  or add buttons in DropDownList. It's possible?
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 04 Jan 2016
1 answer
125 views
Using Visual Studio 2013 Update 4
Telerik Winforms version: 2015.2.728.40
Hristo
Telerik team
 answered on 04 Jan 2016
3 answers
227 views

Hi.

How can i change the distance between a CategoricalAxis and its label ?

( my chartview have two horizontalAxis. the top one have this gap problem )

CategoricalAxis gregorianAxis = new CategoricalAxis();
gregorianAxis.LabelFitMode = AxisLabelFitMode.Rotate;
gregorianAxis.LabelRotationAngle = 60;
gregorianAxis.ClipLabels = false;
gregorianAxis.VerticalLocation = AxisVerticalLocation.Top;
mySerie.HorizontalAxis = gregorianAxis;

Hristo
Telerik team
 answered on 04 Jan 2016
1 answer
146 views

Hi,

 If I place a RadLayoutControl into a UserControl, then trying to add any toolbox controls into it,

Visual Studio will crash.

 Using Visual Studio 2013 Update 4

Telerik Winforms version: 2015.2.728.40

If I place RadLayoutControl into a WinForm/RadForm, then try to add controls into it will be fine.

 Looks like the RadLayoutControl needs to reside in a form instead of UserControl? Don't know this is a bug or it is meant to be.

What I'm trying to do is design UserControls which can be loaded into RadDock's document windows at runtime. 

 

Best Regards,

 

Dimitar
Telerik team
 answered on 04 Jan 2016
5 answers
2.2K+ views
I have a Winforms app with a Telerik RadGridView. Our HR dept has employee pictures in a known location on our file server. I am trying to include the employee picture on my RadGrid using the picture file.

I created a column of type ImageColumn as shown:

Dim imageColumn As New GridViewImageColumn
imageColumn.Name = "ImageColumn"
 imageColumn.HeaderText = "Picture"
 imageColumn.ImageLayout = ImageLayout.Zoom
 RadGridView1.MasterTemplate.Columns.Add(imageColumn)

Then I tried to loop through each row of the radGrid and assign a picture to the imageColumn:

For i As Integer = 0 To RadGridView1.Rows.Count - 1
    RadGridView1.Rows(i).Cells("ImageColumn").Value = "c:\myPicture.jpg"
Next

 

Note: In this example I'm simply trying to assign the same picture to every row. Later I will add logic to add the specific picture required.

Running this code produces a blank image column. No error is returned.

I have tried image values of c:\myPicture.jpg, c:\\\myPicture.jpg, and @c:\myPicture.jpg

What am I doing wrong?

I have a Winforms app with a Telerik RadGridView. Our HR dept has employee pictures in a known location on our file server. I am trying to include the employee picture on my RadGrid using the picture file.

I created a column of type ImageColumn as shown:

Dim imageColumn As New GridViewImageColumn
imageColumn.Name = "ImageColumn"
imageColumn.HeaderText = "Picture"
imageColumn.ImageLayout = ImageLayout.Zoom
RadGridView1.MasterTemplate.Columns.Add(imageColumn)

Then I tried to loop through each row of the radGrid and assign a picture to the imageColumn:

For i As Integer = 0 To RadGridView1.Rows.Count - 1
    RadGridView1.Rows(i).Cells("ImageColumn").Value = "c:\myPicture.jpg"
Next

Note: In this example I'm simply trying to assign the same picture to every row. Later I will add logic to add the specific picture required.

Running this code produces a blank image column. No error is returned.

I have tried image values of c:\myPicture.jpgc:\\\myPicture.jpg, and @c:\myPicture.jpg

What am I doing wrong?

I have a Winforms app with a Telerik RadGridView. Our HR dept has employee pictures in a known location on our file server. I am trying to include the employee picture on my RadGrid using the picture file.

I created a column of type ImageColumn as shown:

Dim imageColumn As New GridViewImageColumn
imageColumn.Name = "ImageColumn"
imageColumn.HeaderText = "Picture"
imageColumn.ImageLayout = ImageLayout.Zoom
RadGridView1.MasterTemplate.Columns.Add(imageColumn)

Then I tried to loop through each row of the radGrid and assign a picture to the imageColumn:

For i As Integer = 0 To RadGridView1.Rows.Count - 1
    RadGridView1.Rows(i).Cells("ImageColumn").Value = "c:\myPicture.jpg"
Next

Note: In this example I'm simply trying to assign the same picture to every row. Later I will add logic to add the specific picture required.

Running this code produces a blank image column. No error is returned.

I have tried image values of c:\myPicture.jpgc:\\\myPicture.jpg, and @c:\myPicture.jpg

What am I doing wrong?

Hristo
Telerik team
 answered on 31 Dec 2015
3 answers
632 views

Hi,

 

My goal is putting a flow diagram into our software in accordance with the values that came. It has to be via code. But i couldn't find any documentation about it.

I can put shapes programmatically. However,i have no idea about creating bindings between them by lines, setting up positions without ruining.

If you may give some hints, examples or lead me .i'll be thankful.

 An example attached.

 Regards,

 Onur

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 30 Dec 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
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?