70-543VB TS Braindump
ExamSoon 70-543VB Exams
Microsoft
O rder : 70-543VB Exam
Practice Exam: 70-543VB
Exam Number/Code: 70-543VB
Exam Name:
Questions and Answers: 60 Q&As
Free 70-543VB Braindumps
Exam : Microsoft 70-543(VB)
Title : TS: Visual Studio Tools for 2007 MS Office System (VTSO)
1. You are creating a document-level solution for Microsoft Office Word 2003 by using Visual Studio Tools for the
Microsoft Office System (VSTO). A transformation file is used to convert the solution document to an HTML file. The
path to the transformation file is stored in a variable named filename. The Uniform Resource Identifier (URI) is stored in
a variable named uri. An optional alias is stored in a variable named alias. You need to ensure that the solution
document uses the transformation file that the user provides. Which code segment should you use?
A. Me.Application.XMLNamespaces.Add (filename, uri , [alias], True)
B. Me.XMLSchemaReferences.Add ( uri , [alias], filename, True)
C. Me.XMLNodes.Add (Name:=filename, Namespace:="")
D. Me.XMLSaveThroughXSLT = filename
Answer: D
2. You create a document-level solution for Microsoft Office Word 2003 by using Visual Studio Tools for the Microsoft
Office System (VSTO). You create a user control named MyUserControl.
You write the following code segment for your document class. (Line numbers are included for reference only.)
01 Private Sub ThisDocument_Startup _
(ByVal sender As Object, ByVal e As System.EventArgs)
02 Dim uc As MyUserControl = New MyUserControl()
03 ... 04 End Sub
You need to display userControl in the actions pane.
Which code segment should you insert at line 03?
A. Me.ActionsPane.Controls.AddRange _
(New Control() {uc, New MyUserControl()})
B. Me.ActionsPane.Controls.Add(uc)
C. Me.Controls.AddControl(uc, 100, 100, 100, 100, "Action s Pane")
D. Me.ActionsPane.Parent.Controls.Add(uc)
Answer: B
3. You are creating a document-level solution for Microsoft Office Word 2003 by using Visual Studio Tools for the
Microsoft Office System (VSTO).
You write