<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Host multiple Excel and Word components in a form</title>
	<atom:link href="http://www.ocxt.com/archives/36/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ocxt.com/archives/36</link>
	<description>ActiveX document container for hosting Office documents and PDF (including Adobe PDF, Microsoft Word, Microsoft Excel, Microsoft PowerPoint, Microsoft Project and Microsoft Visio documents)</description>
	<lastBuildDate>Sat, 19 Nov 2011 03:49:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: office viewer</title>
		<link>http://www.ocxt.com/archives/36#comment-146</link>
		<dc:creator>office viewer</dc:creator>
		<pubDate>Mon, 28 Jun 2010 11:24:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.ocxt.com/archives/36#comment-146</guid>
		<description>Inthe Edraw Office Viewer Component 7.x, the mulitiple instances issue was solved through. Now with the new version, you can open multiple word or excel intance in a form. You can also open mulitple IE tabe to open word at the same tiem. If you launch the Word or Excel outside of the component, it is no problem too. The new version needs not set the ActivationPolicy and FrameHookPolicy value.</description>
		<content:encoded><![CDATA[<p>Inthe Edraw Office Viewer Component 7.x, the mulitiple instances issue was solved through. Now with the new version, you can open multiple word or excel intance in a form. You can also open mulitple IE tabe to open word at the same tiem. If you launch the Word or Excel outside of the component, it is no problem too. The new version needs not set the ActivationPolicy and FrameHookPolicy value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: office viewer</title>
		<link>http://www.ocxt.com/archives/36#comment-133</link>
		<dc:creator>office viewer</dc:creator>
		<pubDate>Tue, 10 Nov 2009 08:24:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.ocxt.com/archives/36#comment-133</guid>
		<description>For IE8 and the Word 2003, the toolbar in MS Word will disable when you open a word from the desktop. There are good methods to solve the issue. The IE7 hasn&#039;t the issue. IE8 and the Office 2007 have not the bug too.</description>
		<content:encoded><![CDATA[<p>For IE8 and the Word 2003, the toolbar in MS Word will disable when you open a word from the desktop. There are good methods to solve the issue. The IE7 hasn&#8217;t the issue. IE8 and the Office 2007 have not the bug too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: office viewer</title>
		<link>http://www.ocxt.com/archives/36#comment-86</link>
		<dc:creator>office viewer</dc:creator>
		<pubDate>Mon, 07 Jul 2008 13:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.ocxt.com/archives/36#comment-86</guid>
		<description>The component runs as exclusive mode in default. So you need close other excel instance before you use  the component. 

The component has two properties. Set them in your initial function if you want open multiple instances. 

axOfficeViewer.ActivationPolicy = OfficeViewer.ActivationPolicy.KeepUIActiveOnAppDeactive;
axOfficeViewer.FrameHookPolicy = OfficeViewer.FrameHookPolicy.SetOnFirstOpen;

Please use the NotifyCtrlRead event and have a try.
 
function OA1_NotifyCtrlReady() {
document.form1.EDrawComponent.ActivationPolicy = 4
document.form1.EDrawComponent.FrameHookPolicy = 1
}
&lt;SCRIPT LANGUAGE=javascript FOR=OA1 EVENT=NotifyCtrlReady&gt;
&lt;!--
 OA1_NotifyCtrlReady();
//--&gt;
&lt;/SCRIPT&gt;</description>
		<content:encoded><![CDATA[<p>The component runs as exclusive mode in default. So you need close other excel instance before you use  the component. </p>
<p>The component has two properties. Set them in your initial function if you want open multiple instances. </p>
<p>axOfficeViewer.ActivationPolicy = OfficeViewer.ActivationPolicy.KeepUIActiveOnAppDeactive;<br />
axOfficeViewer.FrameHookPolicy = OfficeViewer.FrameHookPolicy.SetOnFirstOpen;</p>
<p>Please use the NotifyCtrlRead event and have a try.<br />
 <br />
function OA1_NotifyCtrlReady() {<br />
document.form1.EDrawComponent.ActivationPolicy = 4<br />
document.form1.EDrawComponent.FrameHookPolicy = 1<br />
}<br />
&lt;SCRIPT LANGUAGE=javascript FOR=OA1 EVENT=NotifyCtrlReady&gt;<br />
&lt;!&#8211;<br />
 OA1_NotifyCtrlReady();<br />
//&#8211;&gt;<br />
&lt;/SCRIPT&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mihaela</title>
		<link>http://www.ocxt.com/archives/36#comment-79</link>
		<dc:creator>mihaela</dc:creator>
		<pubDate>Wed, 28 May 2008 09:10:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.ocxt.com/archives/36#comment-79</guid>
		<description>I meant 
param name=&quot;ActivationPolicy&quot; value=&quot;1″
param name=&quot;FrameHookPolicy&quot; value=&quot;1″
or
param name=&quot;ActivationPolicy&quot; value=&quot;4″
param name=&quot;FrameHookPolicy&quot; value=&quot;1″</description>
		<content:encoded><![CDATA[<p>I meant<br />
param name=&#8221;ActivationPolicy&#8221; value=&#8221;1″<br />
param name=&#8221;FrameHookPolicy&#8221; value=&#8221;1″<br />
or<br />
param name=&#8221;ActivationPolicy&#8221; value=&#8221;4″<br />
param name=&#8221;FrameHookPolicy&#8221; value=&#8221;1″</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mihaela</title>
		<link>http://www.ocxt.com/archives/36#comment-78</link>
		<dc:creator>mihaela</dc:creator>
		<pubDate>Tue, 27 May 2008 15:30:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.ocxt.com/archives/36#comment-78</guid>
		<description>Hi,
I&#039;m evaluating the Office Viewer Component to use in a web application. The requirement is that the user will be able to open Microsoft Office files - each in a different tab within the application. The  problem is that when switching from one tab to another and going back to the previous tab, the control is empty, does not show the document anymore.  
I set the parameters:

 
or



but without any success</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I&#8217;m evaluating the Office Viewer Component to use in a web application. The requirement is that the user will be able to open Microsoft Office files &#8211; each in a different tab within the application. The  problem is that when switching from one tab to another and going back to the previous tab, the control is empty, does not show the document anymore.<br />
I set the parameters:</p>
<p>or</p>
<p>but without any success</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: craigw</title>
		<link>http://www.ocxt.com/archives/36#comment-76</link>
		<dc:creator>craigw</dc:creator>
		<pubDate>Fri, 16 May 2008 19:22:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.ocxt.com/archives/36#comment-76</guid>
		<description>I&#039;m using Infragistics&#039; ultraWinTab and placing the viewer control there. I suppress the menu bar and tool bar programmatically with:

axOfficeViewer1.Menubar = false;
axOfficeViewer1.Titlebar = false;
axOfficeViewer1.Toolbars = false;

When I double click the tab to open the Word doc in a separate floating panel, I again suppress them with the same code, both in the new window and again on the tab by referring back to the original instance.

The instance on the tab creates space above the document and acts as though it&#039;s going to show the menu and tool bars. However, they never appear and that space is corrupted with partial drawing of the window behind and any window you drag across that tabbed area.

Note that everything works fine if I don&#039;t suppress the menu and tool bars.

Any suggestions? Thanks in advance.</description>
		<content:encoded><![CDATA[<p>I&#8217;m using Infragistics&#8217; ultraWinTab and placing the viewer control there. I suppress the menu bar and tool bar programmatically with:</p>
<p>axOfficeViewer1.Menubar = false;<br />
axOfficeViewer1.Titlebar = false;<br />
axOfficeViewer1.Toolbars = false;</p>
<p>When I double click the tab to open the Word doc in a separate floating panel, I again suppress them with the same code, both in the new window and again on the tab by referring back to the original instance.</p>
<p>The instance on the tab creates space above the document and acts as though it&#8217;s going to show the menu and tool bars. However, they never appear and that space is corrupted with partial drawing of the window behind and any window you drag across that tabbed area.</p>
<p>Note that everything works fine if I don&#8217;t suppress the menu and tool bars.</p>
<p>Any suggestions? Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Auzani Ridzwan</title>
		<link>http://www.ocxt.com/archives/36#comment-48</link>
		<dc:creator>Auzani Ridzwan</dc:creator>
		<pubDate>Wed, 07 Nov 2007 04:43:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.ocxt.com/archives/36#comment-48</guid>
		<description>Hi we are evaluating the use of your active-x control particularly playing powerpoint files in our digital signage application.  

Our requirements needs us to load the files in realtime.  However the call to _axOfficeViewer.SlideShowOpenAndPlay() takes roughly 7 seconds to complete.  

Is there a method that allows us to load the powerpoint container beforehand (during program startup) and then set the powerpoint file to run at a later stage?

Any help or pointers would be greatly appreciated.</description>
		<content:encoded><![CDATA[<p>Hi we are evaluating the use of your active-x control particularly playing powerpoint files in our digital signage application.  </p>
<p>Our requirements needs us to load the files in realtime.  However the call to _axOfficeViewer.SlideShowOpenAndPlay() takes roughly 7 seconds to complete.  </p>
<p>Is there a method that allows us to load the powerpoint container beforehand (during program startup) and then set the powerpoint file to run at a later stage?</p>
<p>Any help or pointers would be greatly appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: office viewer</title>
		<link>http://www.ocxt.com/archives/36#comment-28</link>
		<dc:creator>office viewer</dc:creator>
		<pubDate>Mon, 27 Aug 2007 11:07:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.ocxt.com/archives/36#comment-28</guid>
		<description>Or in your custom user control, set the following properties of the office viewer component: Activationpolicy=4, FrameHookPolicy=1. 

But this leads to another problem: the inner office application is reloaded everytime the control is activated. So if you wanna hide some of the toolbar buttons, you have to use the code in the activation blocks instead of the control initialize statement.</description>
		<content:encoded><![CDATA[<p>Or in your custom user control, set the following properties of the office viewer component: Activationpolicy=4, FrameHookPolicy=1. </p>
<p>But this leads to another problem: the inner office application is reloaded everytime the control is activated. So if you wanna hide some of the toolbar buttons, you have to use the code in the activation blocks instead of the control initialize statement.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: office viewer</title>
		<link>http://www.ocxt.com/archives/36#comment-20</link>
		<dc:creator>office viewer</dc:creator>
		<pubDate>Sun, 26 Aug 2007 07:26:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.ocxt.com/archives/36#comment-20</guid>
		<description>You need set it as follow:
param name=&quot;ActivationPolicy&quot; value=&quot;1&quot;
param name=&quot;FrameHookPolicy&quot; value=&quot;1&quot;</description>
		<content:encoded><![CDATA[<p>You need set it as follow:<br />
param name=&#8221;ActivationPolicy&#8221; value=&#8221;1&#8243;<br />
param name=&#8221;FrameHookPolicy&#8221; value=&#8221;1&#8243;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

