哈哈,两道很简单的英文试题,可是他们认识我,我不认识他们,请大家帮忙!!!
14.You are writing code for a Windows Form HR application that will allow users to save original and edited data on employees. You use data sets to achieve this. You will be using the WriteXml method to write the XML. The WriteXml method accepts an XmlWriteMode parameter to determine the XML format.Which member of the XmlWriteMode enumeration should you select? (Select the best choice.) ( )
A. The default member B. WriteSchema C. DiffGram D. IgnoreSchema
15.You develop a Windows-based application that includes the following code segment. (Line numbersare included for reference only.)
01 Public CreditCard_Validating (Object sender _
02 , System.ComponentModel.CancelEventArgs e _ 05){If !ValidCreditCard() {
06 'Insert new code.
07 }
08 }
You must ensure that users cannot move control focus away from textCreditCard if
ValidCreditCard returns a value of False. You will add the required code on line 6.
Which code segment should you use? ( )
A. sender = textName B. CreditCard.AcceptsTab = False
C. e.Cancel = True D. CreditCard.CausesValidation =False
问题点数:40、回复次数:20Top
1 楼lookatliu(独孤常败)回复于 2006-11-10 15:40:06 得分 2
15: C
14题不懂Top
2 楼Eddie005(♂) №.零零伍 (♂)回复于 2006-11-10 15:43:54 得分 8
14:选C
成员名称 说明
DiffGram 作为 DiffGram 写入整个 DataSet,包括原始值和当前值。若要生成只包含已更改的值的 DiffGram,请调用 GetChanges,然后在返回的 DataSet 上作为 DiffGram 调用 WriteXml。
IgnoreSchema 以 XML 数据形式写入 DataSet 的当前内容,不带 XSD 架构。如果无数据加载到 DataSet 中,则不写入任何内容。
WriteSchema 以 XML 数据形式写入 DataSet 的当前内容,以关系结构作为内联 XSD 架构。如果 DataSet 只有架构而无数据,那么只写入内联架构。如果 DataSet 没有当前架构,则不写入任何内容。
Top
3 楼lizhizhe2000(武安侯)回复于 2006-11-10 15:45:55 得分 4
C
CTop
4 楼cnnetfan(cnnetfan)回复于 2006-11-10 15:46:01 得分 8
14
Answer: C
The XmlWriteMode parameter of the XmlWriter class, when set to DiffGram, creates a DiffGram XML
document from a data set. The Diffgram XML document format stores the original and current data in the
same XML document. Setting the XmlWriteMode parameter to IgnoreSchema writes the contents of the
data set to XML without including a schema. Specifying WriteSchema will write both the data and the
schema from a DataSet object. The default member of the XmlWriteMode enumeration is WriteSchema.
大哥你要考316?Top
5 楼Eddie005(♂) №.零零伍 (♂)回复于 2006-11-10 15:46:48 得分 2
15 不是C#Top
6 楼Eddie005(♂) №.零零伍 (♂)回复于 2006-11-10 15:48:42 得分 2
15题 不是C#,非要选的话就选c
Top
7 楼h110807877()回复于 2006-11-10 16:10:34 得分 1
顶
学学习Top
8 楼Homers()回复于 2006-11-10 16:25:49 得分 8
14.你正在写一个应有程序来保存原始的和编辑的员工信息,你将用 WriteXml 这个方法来生成xml,这个 writexml方法接受一个 xmlnode 的参数来决定 xml 的格式, 你将会选择 XmlWriteMode 的哪个枚举成员?(最好的一种)
14 : C
15 : CTop
9 楼pbs2000()回复于 2006-11-10 16:34:48 得分 0
非常感谢大家。
to:cnnetfan(cnnetfan),什么是316
我们公司正准备做欧美的项目,就我这英语,愁啊。Top
10 楼sanmu_bradley()回复于 2006-11-10 16:42:17 得分 1
15为什么选C?
Top
11 楼free_wang()回复于 2006-11-10 16:49:23 得分 0
upTop
12 楼deadshot123(空调=头晕)回复于 2006-11-10 16:56:00 得分 1
事件执行结束Top
13 楼cjnet(孤星剑)回复于 2006-11-10 17:41:58 得分 1
14.寫出數據,選擇C
15.取消非有效值焦點移動事件,選CTop
14 楼zhongwanli(㊣【为了老婆,二次重构____然后升★★】㊣)回复于 2006-11-10 17:48:40 得分 1
D
CTop
15 楼Forever4158(做人不能忘本,今生以孝为先!)回复于 2006-11-10 19:20:41 得分 1
请问 DiffGram
是什么 本人菜鸟 刚学Top
16 楼Forever4158(做人不能忘本,今生以孝为先!)回复于 2006-11-10 19:21:27 得分 0
IgnoreSchema是什么意思Top
17 楼lextm(LeLe)回复于 2006-11-10 20:26:54 得分 0
我就纳闷了,十五题怎么就不是C#了?Top
18 楼xuwei(夕阳西下,断肠人在天涯)回复于 2006-11-10 20:33:48 得分 0
也不懂,帮顶Top
19 楼cime63(流浪的孩子)回复于 2006-11-11 11:30:35 得分 0
not very difficultTop
20 楼zerohk(零度空间)回复于 2006-11-11 14:19:30 得分 0
c
cTop




