Click here to Skip to main content
15,887,175 members
Articles / Programming Languages / C#
Tip/Trick

OLE container surrogate for .NET

Rate me:
Please Sign up or sign in to vote.
4.94/5 (15 votes)
13 Mar 2013CPOL1 min read 92.4K   5.1K   18   33
COM OLE-container analog for .NET

Introduction  

Microsoft Visual Basic versions 6.0 and 5.0 provide an OLE container control for embedding OLE objects directly on forms. The OLE container control provides a means for embedding OLE objects such as Microsoft Excel workbooks, Microsoft PowerPoint presentations, and Microsoft Word documents. But Visual Studio .NET does not provide an OLE container control for Windows Forms: http://support.microsoft.com/kb/304562/. Microsoft recommends achieving a similar functionality by using the Microsoft WebBrowser control to host the document if the document uses ActiveX. Excel, PowerPoint, and Word all support ActiveX. Therefore, documents from those sources may be displayed by using the WebBrowser control.

But the WebBrowser control doesn't embed Office documents because of security problems.

The PreviewContainer control solves this problem.  

Possibilities:    

  • preview MS Office documents (Excel, Word, PowerPoint and etc) 
  • preview and zooming different image formats like .jpg, .bmp and etc
  • preview and browsing multi-paged .tif files 
  • preview file formats which WebBrowser control support like .htm, .xml, and etc.
  • developers can extend PreviewContainer control for support different file formats 

Screenshots  

Excel document preview:

Image 1

Multipages TIFF preview:

Image 2

Background

Solution is based on preview handlers mechanism:

Using the code

Using of this control is very simple: 

  1. Add a reference to PreviewsHandlers.dll
  2. Drop the PreviewContainer on a Windows Form 
  3. Call the CreateLink method of the control with the full file path:
  4. C#
    this.previewContainer.CreateLink(@"c:\test.tif");
  5. If you want to browse multi-paged content (like multi-page tif), you can use these methods:
  6. C#
    ((IPaginalPreviewHandlerHost)this.previewContainer).PreviousPage();
    	((IPaginalPreviewHandlerHost)this.previewContainer).NextPage(); 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) GNIVC
Russian Federation Russian Federation
I'm a Russian (Moscow Aviational Institute 1996-2002) Software Engineer living in Moscow, Russia. I have a long experience in Windows programming and have been developing large GUI, Real Time Enterprise Client/Server C# applications and SQL Server/Oracle databases.

My point of interests is high load enterprise applications.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Katja240323-Jul-13 22:51
Katja240323-Jul-13 22:51 
QuestionProvided project not running Pin
rexpertq10-Jun-13 4:18
rexpertq10-Jun-13 4:18 
AnswerRe: Provided project not running Pin
Alexei Bouravtsev13-Jun-13 3:54
Alexei Bouravtsev13-Jun-13 3:54 
GeneralRe: Provided project not running Pin
rexpertq13-Jun-13 18:56
rexpertq13-Jun-13 18:56 
GeneralRe: Provided project not running Pin
Alexei Bouravtsev13-Jun-13 20:38
Alexei Bouravtsev13-Jun-13 20:38 
QuestionWord and Excel documents problem. Pin
Isildure11-Mar-13 4:51
Isildure11-Mar-13 4:51 
AnswerRe: Word and Excel documents problem. Pin
Alexei Bouravtsev13-Mar-13 5:27
Alexei Bouravtsev13-Mar-13 5:27 
QuestionDownloads ? Pin
Member 324609830-Nov-12 7:40
Member 324609830-Nov-12 7:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.