SolutionURL Property

Microsoft Office Visual Basic

Show All Show All

SolutionURL Property

Returns or sets an absolute URL which provides the complete path to the XML expansion pack file attached to the active Microsoft Office Word 2003 document or Microsoft Office Excel 2003 workbook. Read/write String.

expression.SolutionURL

expression    Required. An expression that returns a SmartDocument object.

Remarks

The SolutionUrl property returns an empty string when no XML expansion pack is attached to the active document.

Provide appropriate values for the SolutionID and SolutionUrl properties to attach an available XML expansion pack to the active document and transform it into a smart document without using the PickSolution method. Set the SolutionID and SolutionUrl properties to empty strings to remove the attached XML expansion pack

Example

The following example determines whether an XML expansion pack is attached to the active Word document, then displays the smart document's Solution URL.

        Dim objSmartDoc As Office.SmartDocument
    Set objSmartDoc = ActiveDocument.SmartDocument
    If objSmartDoc.SolutionID = "None" Or objSmartDoc.SolutionID = "" Then
        MsgBox "No XML expansion pack attached."
    Else
        MsgBox "Smart document Solution URL: " & _
            objSmartDoc.SolutionURL
    End If
    Set objSmartDoc = Nothing