精华区 [关闭][返回]

当前位置:网易精华区>>讨论区精华>>编程开发>>● 编程世界>>VB编程>>我们对VB的各个知识点作了得分统计,有兴

主题:我们对VB的各个知识点作了得分统计,有兴
发信人: mcdbastudio()
整理人: (2000-01-13 12:42:50), 站内信件
我们对VB的各个知识点作了得分统计,有兴趣的朋友请去看看(附赠2道70-176试
题)
如果您想得到高分,您必须看看!


客户成绩单扫描件已经上传,您可以对VB2门课程的考试
情况,以及我们试题的质量有了全面的了解,有兴趣您可以去看看!

对您参加考试一定有很大的帮助!
请看登陆我们的站点查阅“最新MCSD用户反馈 ”

http://mathlogic.yeah.net
[email protected]


附赠2道70-176试题:

1.You are writing code to populate the display for a TreeView control 
named tvwMyTree. At the highest
level in the tree, you want to display a node with the text "Parent." 
Under the Parent node you want to
display two items, one with the text "Brother" and the other with text
 "Sister." How can you write the code
to populate this TreeView control?
a. tvwMyTree.AddItem(tvwParent, "Parent")
tvwMyTree.AddItem(tvwChild, "Brother")
tvwMyTree.AddItem(tvwChild, "Sister")
b. tvwMyTree.AddNode(tvwParent, "Parent")
tvwMyTree.AddNode (tvwChild, "Brother")
tvwMyTree.AddNode (tvwChild, "Sister")
c. Dim nodX As Node
Set nodX = tvwMyTree.AddNode("p", "Parent")
Set nodX = tvwMyTree.AddNode ("b", tvwChild, "Brother")
Set nodX = tvwMyTree. AddNode ("s", tvwChild, "Sister")
d. Dim nodX As Node
Set nodX = tvwMyTree.Nodes.Add(,, "p", "Parent")
Set nodX = tvwMyTree.Nodes.Add("p", tvwChild, "b", "Brother")
Set nodX = tvwMyTree.Nodes.Add("p", tvwChild, "s", "Sister")
Answer: d

2.On a form named TestForm, you create two labels: LabelA and LabelB. 
When LabelB is dragged over
LabelA, you want the caption of LabelB to change to "Hello World!" How
 would you implement this?
a. In the Drag event procedure of LabelA, implement the code:
Source.Caption = "Hello World!"
b. In the Drag event procedure of LabelB, implement the code:
Source.Caption = "Hello World!"
c. In the DragOver event procedure of LabelA, implement the code:
Source.Caption = "Hello World!"
d. In the DragOver event procedure of LabelB, implement the code:
Source.Caption = "Hello World!"
Answer: c

--
我们的宗旨是培训真正的DBA,MCSD
保证您一次轻松通过MCSE,MCDBA,MCSD考试!
目前我们提供MCSE,MCSE+INTERNET,MCSD BIBLE
近期内会推出CNE的相应BIBLE
我们的主页http://mathlogic.yeah.net

※ 来源:.月光软件站 http://www.moon-soft.com.[FROM: 202.102.83.168]

[关闭][返回]