Hi, I'm having the following problem. When calling
pdfProvider.Export(document, stream);
where pdfProvider is PdfFormatProvider and document is RadFlowDocument, I sometimes get an Illegal Path exception with this stack trace:
at System.IO.Path.CheckInvalidPathChars(String path, Boolean checkAdditional)
at System.IO.Path.GetExtension(String path)
at Telerik.Windows.Documents.Media.UriImageSource.UpdateExtensionFromUri()
at Telerik.Windows.Documents.Media.UriImageSource.GetImageData()
at Telerik.Windows.Documents.Media.UriImageSource.get_Data()
at Telerik.Windows.Documents.Flow.FormatProviders.Pdf.Export.PdfExportContext.GetImageSource(ImageSource imageSource)
at Telerik.Windows.Documents.Flow.FormatProviders.Pdf.Export.PdfExporter.ExportImageInline(ImageInline imageInline, Block block)
at Telerik.Windows.Documents.Flow.FormatProviders.Pdf.Export.PdfExporter.ExportInline(RadFixedDocumentEditor editor, InlineBase inline, Block block)
at Telerik.Windows.Documents.Flow.FormatProviders.Pdf.Export.PdfExporter.ExportInlines(RadFixedDocumentEditor editor, Paragraph paragraph, Block block)
at Telerik.Windows.Documents.Flow.FormatProviders.Pdf.Export.PdfExporter.ExportParagraph(RadFixedDocumentEditor editor, Paragraph paragraph, Paragraph nextParagraph, Boolean isFirstBlockInContainer)
at Telerik.Windows.Documents.Flow.FormatProviders.Pdf.Export.PdfExporter.ExportBlock(RadFixedDocumentEditor editor, BlockBase block, BlockBase nextBlock, Boolean isFirstBlockInContainer)
at Telerik.Windows.Documents.Flow.FormatProviders.Pdf.Export.PdfExporter.<ExportBlockContainer>d__5.MoveNext()
at Telerik.Windows.Documents.Flow.FormatProviders.Pdf.Export.PdfExporter.ExportSection(Section section, RadFixedDocumentEditor editor)
at Telerik.Windows.Documents.Flow.FormatProviders.Pdf.Export.PdfExporter.ExportDocument(RadFlowDocument document, RadFixedDocumentEditor editor)
at Telerik.Windows.Documents.Flow.FormatProviders.Pdf.Export.PdfExporter.Export()
at Telerik.Windows.Documents.Flow.FormatProviders.Pdf.PdfFormatProvider.ExportOverride(RadFlowDocument document, Stream output)
at Telerik.Windows.Documents.Common.FormatProviders.FormatProviderBase`1.Export(T document, Stream output)
at LS.TMMsgViewer.Services.PdfGenerator.ExportToStream(Stream stream) in C:\ls\pvminiserver\LS.TMMsgViewer\Services\PdfGenerator.cs:line 63
The HTML contains this fragment, I suspect the URL in the "src" attribute is what's causing the problem:
<p class=MsoNormal>
<img border=0 width=1 height=1 id="_x0000_i1033" src="https://t.myvisualiq.net/sync?prid=Test&ao=0&red=https://ad.doubleclick.net/ddm/trackimp/N7121.2426714VISUALIQ0/B20904629.217713024;dc_trk_aid=415907722;dc_trk_cid=99313089;ord=%20180907151105;u=25_CE_35_NFA180907|VIQ_$%7bUUID%7d|;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=?" alt=Advertisement>
<o:p></o:p>
</p>
Is there a setting to ignore malformed URLs (instead of crashing)?
Thanks.
Hiis it possible to change the font in the ReportViewer at run time ?Did it in the RadGridView at run time with the following code and functioned:Private Sub RadFontDropDownList1_TextChanged(sender As Object, e As EventArgs) Handles RadFontDropDownList1.TextChangedDim fnt As Fontfnt = RadGridView1.FontRadGridView1.Font = New System.Drawing.Font(RadFontDropDownList1.SelectedFont, RadDropDownList2.Text)End SubI would like to change the font in the RadGridView that it alsoin the ReportViewer.Hello,
In run-time how to rotate a "Radlabel" in 90°, 180°, 270° angle in c# code?


Hi
Is it possible to use the RichTextEditor (in WinForms) to edit the source/the formatting of the rich text? Much like the HTML view of the comparable ASP.Net control?
There are sometimes when it is hard to understand why some formatting are applied specially when doing copy-and-paste.
I found the ToggleFormattingSymbolsCommand but while it is showing some code, it doesn't show them all and doesn't make the editing easier.
I have a radgridview element where I need to programmatically insert a new row into the child structure of a certain parent row. The behavior would be the same as if I add a row from the add new row (UserAddNewRow). The final result should be equivalent to the row 'NEW ROW' in the attached image.
Thank you.
HiI have the following code ..Private Sub RadGridView1_CellFormatting (sender As Object, e As UI.CellFormattingEventArgs) Handles RadGridView1.CellFormatting If e.CellElement.ColumnInfo.Name = "Document" Then e.CellElement.ForeColor = Color.Red Else e.CellElement.ResetValue (LightVisualElement.ForeColorProperty, ValueResetFlags.Local) End if If e.CellElement.ColumnInfo.Name = "Document" Then If e.CellElement.RowInfo.Cells ("Document"). Value> = RadTextBox4.Text And e.CellElement.RowInfo.Cells ("Document"). Value <= RadTextBox5.Text Then e.CellElement.DrawFill = True e.CellElement.BackColor = Color.Yellow e.CellElement.ForeColor = Color.Blue e.CellElement.GradientStyle = Telerik.WinControls.GradientStyles.Radial e.CellElement.Font = New Font ("Book Antiqua", 12.75 !, FontStyle.Bold) End if End ifEnd Subworks perfectly !Now I would like to add only the sum in the "Document" column that only e.CellElement.BackColor = Color.Yellow or also e.CellElement.GradientStyle = Telerik.WinControls.GradientStyles.Radial have.I would like to have this sum displayed in radlabel3.text, how do I get it there?
void DFGRID_CellValueChanged(object sender, Telerik.WinControls.UI.GridViewCellEventArgs e) { e.Row.Tag = "dirty"; }Hello. I searched for similar problems in the threads but can't find one that solves my problem.
My form's KeyPreview property is set to true, and I have a code for Form_KeyDown event as follows:
private void Form_KeyDown(Object eventSender, KeyEventArgs eventArgs)
{
...some code
}
Now, when I press the ESC key inside one of the cells in edit mode, I expect the Form_KeyDown event to fire. But in this case, it does not. It only fires when the grid is not in edit mode.
How can I automatically trigger these form key events from the editors, without manually calling them from CellEditorInitialized?
Thank you in advance.

Is there a best way to clear contents of an unbound grid without removing the rows/columns?
RadGridView.Rows.Clear() is not desirable because it deletes the actual rows.
