Hello,
Any ideas how to append (insert) and image to an existing PDF? My objective is to add a logo into a bunch of existing PDF documents.
Thanks in advance.

Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Drawing
Imports System.Linq
Imports System.Text
Imports Telerik.WinControls.UI
Imports Telerik.WinControls.Data
' EVENT HANDLER FOR APPOINTMENTS COLLECTION CHANGED CALLS FUNCTION
' Appointments_CollectionChanged()' CAN ADD THIS TO THE FORM_LOAD EVENTAddHandler RadScheduler1.Appointments.CollectionChanged,
AddressOf Appointments_CollectionChanged'Appointments_CollectionChanged()Private Function Appointments_CollectionChanged(ByVal sender As Object,
ByVal e As NotifyCollectionChangedEventArgs) As String' WILL PASS A ACTION TO CollectionChangedCompleted() ' DEPENDING ON THE ACTION PERFORMED AT RUNTIME Select Case e.Action Case NotifyCollectionChangedAction.Add CollectionChangedCompleted("Add") Case NotifyCollectionChangedAction.Batch CollectionChangedCompleted("Batch") Case NotifyCollectionChangedAction.ItemChanged CollectionChangedCompleted("ItemChanged") Case NotifyCollectionChangedAction.ItemChanging CollectionChangedCompleted("ItemChanging") Case NotifyCollectionChangedAction.Move CollectionChangedCompleted("Move") Case NotifyCollectionChangedAction.Remove CollectionChangedCompleted("Remove") Case NotifyCollectionChangedAction.Replace CollectionChangedCompleted("Replace") Case NotifyCollectionChangedAction.Reset CollectionChangedCompleted("Reset") End Select Return String.EmptyEnd Function' CollectionChangedCompleted()' THIS FUNCTION CHECKS TO MAKE SURE THE RadScheduler APPOINTMENTS
' WHERE UPDATEDPrivate Function CollectionChangedCompleted(ByVal action As String) As Boolean If RadScheduler1.Appointments.IsUpdated Then ' FORWARD THE ACTION TO performAction()
' FOR PROCESSING CUSTOM OPERATIONS performAction(action) Return True Else Return False End If Return FalseEnd Function' performAction()Private Function performAction(ByVal action As String) As Boolean Select Case action Case "Add" 'DO CUSTOM OPERATIONS ' ie: updating your datasource/database ' WITH OUT THE NEED FOR A "SAVE/UPDATE" BUTTON ' AUTOMATED UPDATING :) Case "Batch" 'DO CUSTOM OPERATIONS Case "ItemChanged" 'DO CUSTOM OPERATIONS Case "ItemChanging" 'DO CUSTOM OPERATIONS Case "Move" 'DO CUSTOM OPERATIONS Case "Remove" 'DO CUSTOM OPERATIONS Case "Replace" 'DO CUSTOM OPERATIONS Case "Reset" 'DO CUSTOM OPERATIONS End SelectEnd Function' CALL TO APPLY COLORS TO RESOURCES!!!!Private Sub applyResourceColors() Dim colors() As Color = {Color.LightPink, Color.LightBlue, Color.LightCyan, Color.LightGreen, Color.LightSalmon, Color.LightYellow, Color.LightCoral} Dim i As Integer = 0 For Each res As Resource In RadScheduler1.Resources res.Color = colors(i) ' TO MAKE SURE WE DON'T GO OUT OF RANGE FOR THE COLORS() ARRAY ' IF WE REACH OUR ZERO BASED INDEX COUNT ON COLORS ARRAY WE RESET i TO 0 ' ALLOWING IT TO REPEAT THE COLORS Dim colorsCount As Integer = colors.Count If Not i = colorsCount Then i += 1 Else i = 0 End If NextEnd Sub

Hello,
Any ideas how to append (insert) and image to an existing PDF? My objective is to add a logo into a bunch of existing PDF documents.
Thanks in advance.

SchedulerTimelineView v = productionScheduler.GetTimelineView();v.StartDate = DateTime.Today.AddDays(-6)v.ShowTimescale(Timescales.Days);??v.DayStartTime??
??v.DayEndTime??
RadGridView1.TableElement.BeginUpdate()
For Each row1 As GridViewDataRowInfo In RadGridView1.Rows
row1.IsExpanded = True
Next
RadGridView1.TableElement.EndUpdate()
Dim
lastRow As GridViewRowInfo = RadGridView1.Rows(RadGridView1.Rows.Count - 1)
lastRow.EnsureVisible()
lastRow.IsSelected =
True
lastRow.Cells(
"Items").BeginEdit()
Hi Telrik,
I'm in process of evaluating the suitability of the telerik UI component particularly the Chart control. As per our requirement, we need to render different types of 2D and 3D charts. I know the WPF chart control best suits this requirement, but WinForm chart control is of more interest to me because of its inticipated ease of integration with my application. The problem is - I can't find a way to render 3D
charts with Winform chart control. Some links in this forum also suggests that Winform chart control
does not support 3D chart rendering.
http://www.telerik.com/community/forums/winforms/chart/suggestion-3d-chart.aspx
http://www.telerik.com/community/forums/winforms/chart/3d-graph.aspx
Does this(WinForm chart control not supporting 3D graphs) holds true even now? If yes, would it be possible to fix this in near future? If this is already fix, could you please provide a sample test application that demonstrate 3D chart rendering using WinForm Chart?
kind regards
Santosh