File: xdobjExternalApplication.htm

package info (click to toggle)
office2003-schemas 1.0%2Bds-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm, forky, sid, trixie
  • size: 42,304 kB
  • sloc: javascript: 2,429; makefile: 29
file content (21 lines) | stat: -rw-r--r-- 4,893 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html dir="ltr"><head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<META HTTP-EQUIV="assetid" CONTENT="HV01024618"><META NAME="lcid" CONTENT="1033"><title>ExternalApplication Object</title><link rel="stylesheet" type="text/css" href="office10.css"><script type="text/javascript" language="Javascript" src="ExpCollapse.js"></script><script type="text/javascript" language="JavaScript" src="inline.js"></script></head><body><p id="ExpandAllLine" class="ExpFav"><a href="#" onclick="ExpandAll()" onkeypress="ExpandAll()" class="DropDown"><img id="picHeader" border="0" src="expandtri.gif" alt="Show All"><span id="ExpandAll">Show All</span></a></p><h1>ExternalApplication Object</h1><div class="ofvbanav"><span class="ofvbanavreuse" id="seealso" onclick="toggleList()" onkeypress="toggleList()"></span><span class="ofvbanavreuse" id="properties" onclick="toggleList()" onkeypress="toggleList()"></span><span class="ofvbanavreuse" id="methods" onclick="toggleList()" onkeypress="toggleList()"></span><span class="ofvbanavreuse" id="events" onclick="toggleList()" onkeypress="toggleList()"></span><span class="ofvbanavreuse" id="specifics" onclick="toggleList()" onkeypress="toggleList()"></span></div><table class="ofvbaomart"><tr><td class="noborder" nowrap="true"><A HREF="xdobjExternalApplication.htm" title="ExternalApplication"><SPAN class="omblue">ExternalApplication</SPAN></A><br /></td></tr></table><p>Represents the Microsoft Office InfoPath 2003 application. The <b class="bterm">ExternalApplication</b> object implements a limited set of methods that can be used for automating InfoPath by an external Component Object Model (COM)–based programming language.</p><h2>Remarks</h2><p>The <b class="bterm">ExternalApplication</b> object can be used to perform a limited set of InfoPath operations such as creating, opening, or closing a <a href="#" class="glossary" onclick="AppendPopup(this,'xdform')" onkeypress="AppendPopup(this,'xdform')">form</a>; registering or unregistering a <a href="#" class="glossary" onclick="AppendPopup(this,'xdformtemplate')" onkeypress="AppendPopup(this,'xdformtemplate')">form template</a>; or simply quitting the application.</p><h2>Using the ExternalApplication object</h2><p>To use the <b class="bterm">ExternalApplication</b> object, you must first create a reference to it using the ProgID of the InfoPath object model along with the name of the <b class="bterm">ExternalApplication</b> object. The following example demonstrates creating a reference to the <b class="bterm">ExternalApplication</b> object using the <a href="#" class="glossary" onclick="AppendPopup(this,'ofVBA')" onkeypress="AppendPopup(this,'ofVBA')">Visual Basic for Applications (VBA)</a> programming language:</p><pre><code>Dim objIP As Object
Set objIP = CreateObject("InfoPath.ExternalApplication")</code></pre><p><b>Note</b>  This example uses late-binding for creating the reference to the <b class="bterm">ExternalApplication</b> object; you can also use early-binding by setting a reference to the InfoPath object model in your programming environment.</p><p>After you have created a reference to the <b class="bterm">ExternalApplication</b> object, you can then use the methods that it provides to interact with InfoPath. In the following example, written in VBA, the <b class="bterm"><a href="xdmthOpen_1.htm" id="HV01036666" lcid=" ">Open</a></b> method of the <b class="bterm">ExternalApplication</b> object is used to open a form based on the specified <a href="#" class="glossary" onclick="AppendPopup(this,'ofuniformresourceidentifieruri')" onkeypress="AppendPopup(this,'ofuniformresourceidentifieruri')">Uniform Resource Identifier (URI)</a>:</p><pre><code>Public Sub OpenForm()

   Dim objIP As Object

   'Create the ExternalApplication object and open a specified form.
   Set objIP = CreateObject("InfoPath.ExternalApplication")
   objIP.Open ("C:\My Forms\Form1.xml")

   Set objIP = Nothing

End Sub
</code></pre><p>For more information about using the <b class="bterm">ExternalApplication</b> object, see <a href="inconAutomatingIP.htm" id="HV01039915" lcid=" ">Automating InfoPath</a>.</p><script type="text/javascript" language="JScript" src="ofvbanl.js"></script><span id="ofVBAISpan" class="ofvbaispan"><iframe id="ofVBAIFrame" frameborder="0" marginheight="0" marginwidth="4" scrolling="auto" width="100%" src="../links/xdobjExternalApplication_l.htm"></iframe></span><center><a href="XMLSchemaCopyright_HV01147162.htm">&copy;2003-2004 Microsoft Corporation. All rights reserved.</a>  

Permission to copy, display and distribute this document is available at: <a 

href="http://r.office.microsoft.com/r/rlidAWSContentRedir?AssetID=XT010988631033&amp;CTT=11&amp;Origin=HV011232471033" 

target="_new">http://msdn.microsoft.com/library/en-us/odcXMLRef/html/odcXMLRefLegalNotice.asp</a></center></body></html>