Telerik Forums
Telerik Document Processing Forum
3 answers
96 views
Hi, i can't find the FixedContentEditor utility class telerik after importing all the necessary libraries and i can't find the document.Pages.AddPage() method in the RadDocumentPage class. This is what i get :
Kammen
Telerik team
 answered on 15 Aug 2014
1 answer
200 views
Hello,

Is there a way to use SpeadProcessing to get the comments from an Excel cell?

Thanks,

Scott
Nikolay Demirev
Telerik team
 answered on 01 Aug 2014
1 answer
214 views
Can PdfProcessing create PDFs from TIFF images? Either single page or multi-page TIFFs (one image per PDF page)?
Kammen
Telerik team
 answered on 21 Jul 2014
1 answer
377 views

Hi,

I've been looking in to the getting started guide of the new PDFprocessing and was wondering how one could create a hyperlink in radPDFproecessing since I cannot find anything about it.

something like : editor.DrawText("Hello RadPdfProcessing!");      => but or a hyperlink like <a href=http://www.telerik.com>telerik is cool</a>

thanks,
Alexander
Telerik team
 answered on 30 Jun 2014
1 answer
688 views
I have a small console app that takes a collection of objects and generates a seperate excel file for each.  I am using EPPlus.  Does telerik have something like this or better?  And if so an example application?

Thanks
Anna
Telerik team
 answered on 24 Jun 2014
1 answer
84 views
I'm trying to upgrade our controls, and I'm getting the error: The type or namespace name 'Zip' does not exist in the namespace 'Telerik.Web' (are you missing an assembly reference?

It looks like your examples still reference Telerik.Web.Zip.  Was there some change to the ZipLibrary in Q2?  I didn't see anything in the change log for it, and I upgraded our controls the same way that I usually do...
Korn1699
Top achievements
Rank 1
 answered on 23 Jun 2014
1 answer
128 views
So could I used this in my WCF or C# Web API back end to create excel files or with the other new one, PDFs? 
Just use the Workbook workbook = new Workbook();  and then export to a stream and do whatever with it?
Anna
Telerik team
 answered on 23 Jun 2014
1 answer
343 views
Hi,

I am searching for a way to export out a word document from my c# wpf application. I have a documentviewer that has a generated document. Does the words processing control allow this?

many thanks,

Rob
Alex
Telerik team
 answered on 11 Jun 2014
1 answer
381 views
Hi,
I am working with some log files I generate with another application.  My intention is to archive them and then delete the large log file and have it stored in a compressed format for later access.    This works when I use ZipArchiveMode.Create.   Where this falls apart is that if I delete the file after I have added it to the archive, and then run the program again, it is not keeping the old entries in the archive - since I am using "Create".  I also wanted to save time that if the file I wanted to add was already in the archive, it would skip adding it.  A query against the Entries property of the ZipArchive does not seem to work when the mode is set to Create - it might work for the first time I ask, but once I add a file I get an error.  I then attempted to use ZipArchiveMode.Update, but then I received and ObjectDisposedException {"Cannot access a closed Stream."}.

I am using the code found in this post
http://www.telerik.com/forums/zip-content-of-a-folder-into-an-encrypted-zip-file
to add the existing files to the archive.

So I'm not sure if I am using the ZipArchive incorrectly, or I need to do it a different way, but help and guidance would be appreciated.  I can create a demo app if needed.

Thanks,
Chris
Andrey
Telerik team
 answered on 11 Jun 2014
2 answers
472 views
I'm trying to compress and decompress file with ZipLibrary. But it doesn't works. Can anybody help me?

 Private Function Compress(data As Byte()) As Byte()
        Dim result As Byte() = Nothing
        Try
            Using memoryStream As New MemoryStream()
                Dim method As ZipCompression = ZipCompression.Deflate64
                Using zipOutputStream As New ZipOutputStream(memoryStream, method)
                    Using writer As New StreamWriter(zipOutputStream)
                        writer.Write(data)
                        writer.Flush()
                        result = memoryStream.ToArray()
                    End Using
                End Using
            End Using
        Catch ex As Exception
            MessageBox.Show(ex.Message)
        End Try
        Return result
    End Function

  Private Function UnCompress(data As Byte()) As Byte()
        Dim result As Byte() = Nothing
        Try
            Using memoryStream As New MemoryStream(data)
                Using zipInputStream As New ZipInputStream(memoryStream)
                    Using reader As New StreamReader(zipInputStream)
                        result = memoryStream.ToArray
                    End Using
                End Using
            End Using
        Catch ex As Exception

        End Try
        Return result
    End Function

Stalin Vladimir
Top achievements
Rank 1
 answered on 15 Apr 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?