1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
<html dir="ltr"><head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<META HTTP-EQUIV="assetid" CONTENT="HV01021245"><META NAME="lcid" CONTENT="1033"><title>Solution 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>Solution 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="xdobjSolution.htm" title="Solution"><SPAN class="omblue">Solution</SPAN></A><br /></td></tr></table><p>Corresponds to a Microsoft Office InfoPath 2003 <a href="#" class="glossary" onclick="AppendPopup(this,'xdformtemplate')" onkeypress="AppendPopup(this,'xdformtemplate')">form template</a>. The <b class="bterm">Solution</b> object implements properties for getting information about a form template, including its version number, the <a href="#" class="glossary" onclick="AppendPopup(this,'ofURL')" onkeypress="AppendPopup(this,'ofURL')">Uniform Resource Locator (URL)</a> of its extracted <a href="#" class="glossary" onclick="AppendPopup(this,'xdformfiles')" onkeypress="AppendPopup(this,'xdformfiles')">form files</a>, the URL it was loaded from, and an XML <a href="#" class="glossary" onclick="AppendPopup(this,'ofdocumentobjectmodeldom')" onkeypress="AppendPopup(this,'ofdocumentobjectmodeldom')">Document Object Model (DOM)</a> containing its <a href="#" class="glossary" onclick="AppendPopup(this,'xdformdefinitionfilexsf')" onkeypress="AppendPopup(this,'xdformdefinitionfilexsf')">form definition (.xsf) file</a>. </p><h2>Remarks</h2><p>The <b class="bterm">Solution</b> object is accessed through the <b class="bterm"><a href="xdproSolution.htm" id="HV01021333" lcid=" ">Solution</a></b> property of the <b class="bterm"><a href="xdobjXDocument.htm" id="HV01021254" lcid=" ">XDocument</a></b> object.</p><h2>Using the Solution object</h2><p>In the following example, a reference is set to the <b class="bterm">Solution</b> object, then the code gets the name of the person who authored the form from the .xsf using the <b class="bterm"><a href="xdproDOM_1.htm" id="HV01021334" lcid=" ">DOM</a></b> property of the <b class="bterm">Solution</b> object. A test is then made to determine if there is an author value, and the results are displayed in a message box.</p><pre><code>function SolutionInfo::OnClick(eventObj)
{
var objSolution = XDocument.<b class="bterm">Solution</b>;
var strSolutionVersion = objSolution.Version;
var objAuthorNode = objSolution.DOM
.selectSingleNode("xsf:xDocumentClass/@author");
var strAuthorText;
if (objAuthorNode != null)
strAuthorText = objAuthorNode.text;
else
strAuthorText = "Author not available.";
XDocument.UI.Alert("Version: " + strSolutionVersion +
"\nAuthor: " + strAuthorText);
}
</code></pre><p>For more information about using the <b class="bterm">Solution</b> object, see <a href="inconAccessingApplicationData.htm" id="HV01039906" lcid=" ">Accessing application data</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/xdobjSolution_l.htm"></iframe></span><center><a href="XMLSchemaCopyright_HV01147162.htm">©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&CTT=11&Origin=HV011232471033"
target="_new">http://msdn.microsoft.com/library/en-us/odcXMLRef/html/odcXMLRefLegalNotice.asp</a></center></body></html>
|