单选题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 ?()Ahe failed to specify the form type  Bthe inheriting form is not a response form  Che specified the same field names on both forms Dhe 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 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 


参考解析

解析: 暂无解析

相关考题:

You should fill in the form. with your name, sex,(), and address. A、oldB、yearsC、timeD、age

In what form. are the reserves required to he held?A.In the form. of currency and coin on the premises.B.In the form. of vault cash.C.In a deposit at a regional Federal Reserve Bank.D.All of the above.

下列语句用来设置窗体Forml的属性,其中在运行时不能正确操作的语句是A.Form1.Caption="Form. Test"B.Form1.Name="Form. Test"C.Form1.MaxButton=FalseD.Form1.MinButton=False

下列语句用来设置窗体Form1的属性,其中在运行时不能正确操作的语句是A.Form1.Capfin="Form. Test"B.Form.Name="Form. Test"C.Form1.MaxButton=FalseD.Form1.MinButton=False

当双击窗体Form1时,要将窗体Form1隐藏起来、将窗体Form2以模式方式显示出来的事件过程,正确的是A.Private Sub Form. _ Db1Click( ) Forml.Hide Form2.Show 0 End SubB.Private Sub Form. _ Db1Click( ) Form1.Hide Form. 2.Show 1 End SubC.Private Sub Form. _ Click( ) Form. l.Hide Form. 2.Show End SubD.Private Sub Form. _ Dbl Click( ) Form. l.Enabled=False Form. 2.Enabled=True End Sub

创建一个滚动菜单的HTML代码是?()A、form/form  B、select multiple name="NAME" size=?/select C、option  D、select name="NAME"/select

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. Setthe ValidationExpression property to ensure that the users input follows the format of nn-nn-nnnn, where n represents a number from 0 through 9.

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

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

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

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

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

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”)

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 passwordB、 a form that POSTs to the j_security_check URLC、 an applet that requests the user name and password from the userD、 a hidden field that supplies the login-constraint used by the application

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.

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.

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".

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.

单选题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?()Ause an action with subactions Blayer the actions in the action menu  CUse action buttons within an outline control in a hidden frame to present twisties  Duse hide/when formulas along with a database profile field setting to display toolbars of icons

单选题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 .()Ainheritance in the review form was disabled Bshared values were enabled on both forms  Cshared field values and field definitions were enabled Dshow response documents in a hierarchy was not enabled

单选题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? ()AAdd 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.BAdd 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.CAdd 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.DAdd 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.

单选题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?()ASALARY form at runtime. BSALARY form at design time. CCOMMISSION form at runtime. DCOMMISSION form at design time.

单选题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 ?()Ahe failed to specify the form type  Bthe inheriting form is not a response form  Che specified the same field names on both forms Dhe failed to provide inheritance formulas for each field

单选题Eduardo chose native style (use native control )when he created an editable field on a form. how will the field appear to notes users? ()Afixed size outlined rectangle Bblank space marked off by red brackets Cblank space marked off by black brackets Dthe field will not appear to notes users.it will only be visible to web users

单选题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? ()AA trigger in each form. BA subprogram in each form. CA stored subprogram in the database. DA subprogram in a library that is attached to each form.

单选题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 passwordB a form that POSTs to the j_security_check URLC an applet that requests the user name and password from the userD a hidden field that supplies the login-constraint used by the application

单选题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?()Aselect the parenthesis when negative value in the view properties box Bselect the parenthesis when negative value in the column properties box Cuse the @function @negative to set this in the column formula in the view Duse a formula to format the value in the field on the form that will be displaying in the view

单选题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? ()AAdd 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.BAdd 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.CAdd 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.DAdd a RegularExpressionValidator control to the Web Form. Set its ControlToValidate property to txtDate. Setthe ValidationExpression property to ensure that the users input follows the format of nn-nn-nnnn, where n represents a number from 0 through 9.