单选题when robert created a response form. he set the "formulas inherit values from selected document" option on the form properties, the field name on the review form is the same as the field name on the inheriting form, however the form does not inherit an

题目
单选题
when robert created a response form. he set the "formulas inherit values from selected document" option on the form properties, the field name on the review form is the same as the field name on the inheriting form, however the form does not inherit any data ,why ?()
A

he failed to specify the form type  

B

the inheriting form is not a response form  

C

he specified the same field names on both forms 

D

he failed to provide inheritance formulas for each field 


相似考题
更多“单选题when robert created a response form. he set the "formulas inherit values from selected document" option on the form properties, the field name on the review form is the same as the field name on the inheriting form, however the form does not inherit an”相关问题
  • 第1题:

    当双击窗体Form1时,要将窗体Form1隐藏起来、将窗体Form2以模式方式显示出来的事件过程,正确的是

    A.Private Sub Form. _ Db1Click( ) Forml.Hide Form2.Show 0 End Sub

    B.Private Sub Form. _ Db1Click( ) Form1.Hide Form. 2.Show 1 End Sub

    C.Private Sub Form. _ Click( ) Form. l.Hide Form. 2.Show End Sub

    D.Private Sub Form. _ Dbl Click( ) Form. l.Enabled=False Form. 2.Enabled=True End Sub


    正确答案:B
    解析:语句Form2,Show0是将Form2.以非模态方式显示,所以选项A错误;语句Form.2.Show1中的参数1表示将Form.2以模态方式显示,所以选项B正确;选项C错误,该事件过程是窗体的单击事件,而题目要求的是窗体的双击事件;窗体Enabled属性的作用是设置窗体是否被激活,不是设置窗体是否可见,所以选项D错误。

  • 第2题:

    You create a Web Form that contains a text box named txtDate. You want the text box to allow users to enter any valid date. You need to use an ASP.NET validation control to ensure that only valid date values are submitted to the server. What should you do? ()

    • A、Add a CompareValidator control to the Web Form. Set its ControlToValidate property to txtDate. Set its Type property to Date. Set its Operator property to DataTypeCheck.
    • B、Add a RangeValidator control to the Web Form. Set its ControlToValidate property to txtDate. Set its Type property to Date. Set its MinimumValue property to 01/01/1900 and its MaximumValue to the current date.
    • C、Add a CustomValidator control to the Web Form. Set its ControlToValidate property to txtDate. Write a function in the partial class that verifies the values as dates and returns a Boolean variable. Set the CustomValidators ClientValidationFunction to the name of your function.
    • D、Add a RegularExpressionValidator control to the Web Form. Set its ControlToValidate property to txtDate. Set the ValidationExpression property to ensure that the users input follows the format of nn-nn-nnnn, where n represents a number from 0 through 9.

    正确答案:A

  • 第3题:

    when robert created a response form. he set the "formulas inherit values from selected document" option on the form properties, the field name on the review form is the same as the field name on the inheriting form, however the form does not inherit any data ,why ?()

    • A、he failed to specify the form type  
    • B、the inheriting form is not a response form  
    • C、he specified the same field names on both forms 
    • D、he failed to provide inheritance formulas for each field 

    正确答案:D

  • 第4题:

    Eduardo chose native style (use native control )when he created an editable field on a form. how will the field appear to notes users? ()

    • A、fixed size outlined rectangle 
    • B、blank space marked off by red brackets 
    • C、blank space marked off by black brackets 
    • D、the field will not appear to notes users.it will only be visible to web users

    正确答案:A

  • 第5题:

    james needs to sort a list of values in a list of values in fieldA, and when the form in saved ,he wants to sort the list before it is saved. Which one of the following formulas would accomplish this?()

    • A、 @sort 
    • B、 @sort(@thisvalue) 
    • C、 @sortAscending(fieldA)      
    • D、 @sort(“ascesding”;”fieldA”)

    正确答案:B

  • 第6题:

    You are developing the Payroll application that contains the SALARY and COMMISSION forms. When a user invoked the COMMISSION form from the SALARY form, the SAL value should be passed to the COMMISSION form. In which data form and at what time should you define the parameter to accept the value?()

    • A、SALARY form at runtime. 
    • B、SALARY form at design time. 
    • C、COMMISSION form at runtime. 
    • D、COMMISSION form at design time. 

    正确答案:D

  • 第7题:

    You write a logging function for a Web Form. You call the logging function from the Page_Unload event handler. You test the Web Form and notice that the Page_Unload event handler does not call the logging function. You need to ensure that the logging function is called. What are two possible ways to achieve this goal? ()

    • A、Set the Page attribute to AutoEventWireup="False". Remove the attribute onunload="Page_Unload" from the Web Form element.
    • B、Set the Page attribute to AutoEventWireup="False". Add the attribute OnUnload="Page_Unload" to the Web Form element.
    • C、Set the Page attribute to AutoEventWireup="False". Add the Web Form attribute autocomplete=on.
    • D、Set the Page attribute to AutoEventWireup="True".

    正确答案:B,D

  • 第8题:

    单选题
    olga wants to have one action on the video form that will give the options to print ,save and exit the document when it is clicked .how can she accomplish this?()
    A

    use an action with subactions 

    B

    layer the actions in the action menu  

    C

    Use action buttons within an outline control in a hidden frame to present twisties  

    D

    use hide/when formulas along with a database profile field setting to display toolbars of icons


    正确答案: C
    解析: 暂无解析

  • 第9题:

    单选题
    You create a Web Form that contains a text box named txtDate. You want the text box to allow users to enter any valid date. You need to use an ASP.NET validation control to ensure that only valid date values are submitted to the server. What should you do? ()
    A

    Add a CompareValidator control to the Web Form. Set its ControlToValidate property to txtDate. Set its Type property to Date. Set its Operator property to DataTypeCheck.

    B

    Add a RangeValidator control to the Web Form. Set its ControlToValidate property to txtDate. Set its Type property to Date. Set its MinimumValue property to 01/01/1900 and its MaximumValue to the current date.

    C

    Add a CustomValidator control to the Web Form. Set its ControlToValidate property to txtDate. Write a function in the partial class that verifies the values as dates and returns a Boolean variable. Set the CustomValidators ClientValidationFunction to the name of your function.

    D

    Add a RegularExpressionValidator control to the Web Form. Set its ControlToValidate property to txtDate. Set the ValidationExpression property to ensure that the users input follows the format of nn-nn-nnnn, where n represents a number from 0 through 9.


    正确答案: B
    解析: 暂无解析

  • 第10题:

    单选题
    when robert created a response form. he set the "formulas inherit values from selected document" option on the form properties, the field name on the review form is the same as the field name on the inheriting form, however the form does not inherit any data ,why ?()
    A

    he failed to specify the form type  

    B

    the inheriting form is not a response form  

    C

    he specified the same field names on both forms 

    D

    he failed to provide inheritance formulas for each field 


    正确答案: C
    解析: 暂无解析

  • 第11题:

    单选题
    You are building two forms. Each form has a button and a non-base table field. When the button is pressed, a complicated calculation is executed. The calculation is the same for both forms. The calculation code does not query or change the data in the database. When the calculation completes, it returns a single value to the non-base table field. To optimize performance and maintainability, which PL/SQL structure should be used? ()
    A

    A trigger in each form. 

    B

    A subprogram in each form. 

    C

    A stored subprogram in the database. 

    D

    A subprogram in a library that is attached to each form.


    正确答案: B
    解析: 暂无解析

  • 第12题:

    单选题
    tommy has created a sales view in his sales.nsf database. Tommy wants negative numbers in the sales number column in the view parenthesis. which one of the following should tommy do?()
    A

    select the parenthesis when negative value in the view properties box 

    B

    select the parenthesis when negative value in the column properties box 

    C

    use the @function @negative to set this in the column formula in the view 

    D

    use a formula to format the value in the field on the form that will be displaying in the view


    正确答案: B
    解析: 暂无解析

  • 第13题:

    创建一个滚动菜单的HTML代码是?()

    • A、<form></form>  
    • B、<select multiple name="NAME" size=?></select> 
    • C、<option>  
    • D、<select name="NAME"></select>

    正确答案:B

  • 第14题:

    tommy has created a sales view in his sales.nsf database. Tommy wants negative numbers in the sales number column in the view parenthesis. which one of the following should tommy do?()

    • A、select the parenthesis when negative value in the view properties box 
    • B、select the parenthesis when negative value in the column properties box 
    • C、use the @function @negative to set this in the column formula in the view 
    • D、use a formula to format the value in the field on the form that will be displaying in the view

    正确答案:B

  • 第15题:

    olga wants to have one action on the video form that will give the options to print ,save and exit the document when it is clicked .how can she accomplish this?()

    • A、use an action with subactions 
    • B、layer the actions in the action menu  
    • C、Use action buttons within an outline control in a hidden frame to present "twisties " 
    • D、use hide/when formulas along with a database profile field setting to display "toolbars" of icons

    正确答案:A

  • 第16题:

    hans is designing the reviews application. the application will include two forms :review and response, in the view ,the response documents do not appear under the review documents from which they were created, what could be causing this to happen .()

    • A、inheritance in the review form was disabled 
    • B、shared values were enabled on both forms  
    • C、shared field values and field definitions were enabled 
    • D、show response documents in a hierarchy was not enabled

    正确答案:D

  • 第17题:

    In form-based authentication, what must be included in the HTML returned from the URL specified by the  element?()

    • A、 a base-64 encoded user name and password
    • B、 a form that POSTs to the j_security_check URL
    • C、 an applet that requests the user name and password from the user
    • D、 a hidden field that supplies the login-constraint used by the application

    正确答案:B

  • 第18题:

    You are building two forms. Each form has a button and a non-base table field. When the button is pressed, a complicated calculation is executed. The calculation is the same for both forms. The calculation code does not query or change the data in the database. When the calculation completes, it returns a single value to the non-base table field. To optimize performance and maintainability, which PL/SQL structure should be used? ()

    • A、A trigger in each form. 
    • B、A subprogram in each form. 
    • C、A stored subprogram in the database. 
    • D、A subprogram in a library that is attached to each form.

    正确答案:D

  • 第19题:

    You create a Web Form that contains a text box named txtDate. You want the text box to allow users to enter any valid date. You need to use an ASP.NET validation control to ensure that only valid date values are submitted to the server. What should you do?()

    • A、Add a CompareValidator control to the Web Form. Set its ControlToValidate property to txtDate. Set its Type property to Date. Set its Operator property to DataTypeCheck.
    • B、Add a RangeValidator control to the Web Form. Set its ControlToValidate property to txtDate. Set its Type property to Date. Set its MinimumValue property to 01/01/1900 and its MaximumValue to the current date.
    • C、Add a CustomValidator control to the Web Form. Set its ControlToValidate property to txtDate. Write a function in the partial class that verifies the values as dates and returns a Boolean variable. Set the CustomValidators ClientValidationFunction to the name of your function.
    • D、Add a RegularExpressionValidator control to the Web Form. Set its ControlToValidate property to txtDate. Set the ValidationExpression property to ensure that the users input follows the format of nn-nn-nnnn, where n represents a number from 0 through 9.

    正确答案:A

  • 第20题:

    单选题
    hans is designing the reviews application. the application will include two forms :review and response, in the view ,the response documents do not appear under the review documents from which they were created, what could be causing this to happen .()
    A

    inheritance in the review form was disabled 

    B

    shared values were enabled on both forms  

    C

    shared field values and field definitions were enabled 

    D

    show response documents in a hierarchy was not enabled


    正确答案: A
    解析: 暂无解析

  • 第21题:

    单选题
    You are developing the Payroll application that contains the SALARY and COMMISSION forms. When a user invoked the COMMISSION form from the SALARY form, the SAL value should be passed to the COMMISSION form. In which data form and at what time should you define the parameter to accept the value?()
    A

    SALARY form at runtime. 

    B

    SALARY form at design time. 

    C

    COMMISSION form at runtime. 

    D

    COMMISSION form at design time. 


    正确答案: A
    解析: 暂无解析

  • 第22题:

    单选题
    Eduardo chose native style (use native control )when he created an editable field on a form. how will the field appear to notes users? ()
    A

    fixed size outlined rectangle 

    B

    blank space marked off by red brackets 

    C

    blank space marked off by black brackets 

    D

    the field will not appear to notes users.it will only be visible to web users


    正确答案: C
    解析: 暂无解析

  • 第23题:

    单选题
    In form-based authentication, what must be included in the HTML returned from the URL specified by the  element?()
    A

     a base-64 encoded user name and password

    B

     a form that POSTs to the j_security_check URL

    C

     an applet that requests the user name and password from the user

    D

     a hidden field that supplies the login-constraint used by the application


    正确答案: D
    解析: 暂无解析

  • 第24题:

    单选题
    You create a Web Form that contains a text box named txtDate. You want the text box to allow users to enter any valid date. You need to use an ASP.NET validation control to ensure that only valid date values are submitted to the server. What should you do? ()
    A

    Add a CompareValidator control to the Web Form. Set its ControlToValidate property to txtDate. Set its Type property to Date. Set its Operator property to DataTypeCheck.

    B

    Add a RangeValidator control to the Web Form. Set its ControlToValidate property to txtDate. Set its Type property to Date. Set its MinimumValue property to 01/01/1900 and its MaximumValue to the current date.

    C

    Add a CustomValidator control to the Web Form. Set its ControlToValidate property to txtDate. Write a function in the partial class that verifies the values as dates and returns a Boolean variable. Set the CustomValidators ClientValidationFunction to the name of your function.

    D

    Add a RegularExpressionValidator control to the Web Form. Set its ControlToValidate property to txtDate. Set the ValidationExpression property to ensure that the users input follows the format of nn-nn-nnnn, where n represents a number from 0 through 9.


    正确答案: C
    解析: 暂无解析