单选题How can you change the cursor style in your form? ()A Open the form module property palette and set the Cursor Style property. B From the Tools menu, select Preferences-->Runtime Settings. C Use the GET_APPLICATION_PROPERTY and SET_APPLICATION_PROPERTY

题目
单选题
How can you change the cursor style in your form? ()
A

Open the form module property palette and set the Cursor Style property. 

B

From the Tools menu, select Preferences-->Runtime Settings. 

C

Use the GET_APPLICATION_PROPERTY and SET_APPLICATION_PROPERTY built-ins. 

D

You cannot change the cursor style.


相似考题
参考答案和解析
正确答案: A
解析: 暂无解析
更多“单选题How can you change the cursor style in your form? ()A Open the form module property palette and set the Cursor Style property. B From the Tools menu, select Preferences--Runtime Settings. C Use the GET_APPLICATION_PROPERTY and SET_APPLICATION_PROPERTY ”相关问题
  • 第1题:

    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

  • 第2题:

    Which built-in do you use to determine which timer in form module has expired?()

    • A、FIND_TIMER 
    • B、GET_TIMER_PROPERTY
    • C、GET_APPLICATION_PROPERTY 
    • D、GET_CUSTOM_ITEM_EVENT_PROPERTY

    正确答案:C

  • 第3题:

    You create a financial report to be represented to board of directors. The accounting manager has asked you to change the number format to show a thousand separator. What is the best method to make this change to the report quickly?()

    • A、Open the property palette and set the format mask for all the numeric items in the report. 
    • B、Select the data to be free formatted in the life previewer and lick on the thousand separator icon on the style bar. 
    • C、Go to the layout model and change the field attributes for the data to be changed on the report. 
    • D、Rebuild the report using the report wizard setting this format on creation.

    正确答案:B

  • 第4题:

    You are developing a Hotel Booking application for a travel company. The users request a wizard-style interface for this application. How could you satisfy this requirement?()

    • A、Reference the Object Iron packages in your form module. 
    • B、Write an HTML interface, and invoke it from your form module. 
    • C、Include the Wizard class reusable component in your application. 
    • D、Build a customized wizard using tab canvases and a horizontal toolbar canvas.

    正确答案:C

  • 第5题:

    You need to allow the user to toggle between automatic query and no automatic query using a pop-up menu. Which built-in would you use in the menu item command to obtain the relationship name? ()

    • A、GET_RELATION_PROPERTY 
    • B、SET_RELATION_PROPERTY 
    • C、GET_BLOCK_PROPERTY 
    • D、GET_FORM_PROPERTY

    正确答案:C

  • 第6题:

    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

  • 第7题:

    单选题
    How can you change the cursor style in your form? ()
    A

    Open the form module property palette and set the Cursor Style property. 

    B

    From the Tools menu, select Preferences-->Runtime Settings. 

    C

    Use the GET_APPLICATION_PROPERTY and SET_APPLICATION_PROPERTY built-ins. 

    D

    You cannot change the cursor style.


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

  • 第8题:

    单选题
    You are developing a Hotel Booking application for a travel company. The users request a wizard-style interface for this application. How could you satisfy this requirement?()
    A

    Reference the Object Iron packages in your form module. 

    B

    Write an HTML interface, and invoke it from your form module. 

    C

    Include the Wizard class reusable component in your application. 

    D

    Build a customized wizard using tab canvases and a horizontal toolbar canvas.


    正确答案: 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题:

    单选题
    You have written a custom menu for a Forms application. You saved the menu module to the file custmenu.mmb. In the Property Palette for the form, you set the Menu Module property to custmenu. When you run the form, the custom menu does not appear. What can you do to fix this problem?()
    A

    Generate the menu module executable. 

    B

    Save the menu module as custmenu.mmx. 

    C

    In the Property Sheet for the form, set the Starting Menu property to custmenu. 

    D

    In the Property Sheet for the form, set the Menu Module property to custmenu.mmb.


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

  • 第11题:

    单选题
    You create a salary report to display employee salaries grouped by the dept column. You need to change the break order from ascending to descending using the model. How would you reverse the display order of the department? ()
    A

    Double click the dept column in the group to alter the property palette and change the break out order value. 

    B

    Double click the dept column in the group to open the property palette and change the set break order value. 

    C

    Double click the g_dept group object to change the break order. 

    D

    Click the dept column in the group to change the break order.


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

  • 第12题:

    单选题
    You create a data block based on a relational table containing a REF column. You select the REF column for your form module. What is true about the items based on the REF column attributes?()
    A

    The Query Only property is set to Yes. 

    B

    The Conceal Data property is set to Yes. 

    C

    The Insert Allowed property is set to Yes. 

    D

    The Update Allowed property is set to Yes.


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

  • 第13题:

    You are creating the DEPT_SAL data block from the PAYHIST form. Users should be able to enter a valid department ID number, which will then display the employee salary information for that department. This data block could potentially retrieve a large number of records. Since users will probably only view a small number of these records, only 10 records should be fetched at one time. How would you create the data block?()

    • A、Select The Data Blocks node in the Object Navigator and click the Create button. Choose to build the data block manually, enter the procedure name in the Query Data Source Columns property, and the procedure code in the Query Data Source Arguments property. 
    • B、Choose Tools -> Data Block Wizard, select Table as the data source type, and base the block on the columns from the tables. 
    • C、Choose Tools -> Data Block Wizard, select, View as the data source type, and base the block on the columns from the tables. 
    • D、Select the Data Blocks node in the Object Navigator and click the Create button. Choose to build the data block manually, alter the Query Data Source Type property to 'FROM clause query', and enter the SELECT statement in the Query Data Source Name property. 
    • E、Select the Data Block node in the Object Navigator and click the Create button. Alter the Query Data Source Type, Query Data Source Name, Query Data Sources Columns, and Query Data Source Arguments properties to create a stored procedure that uses a red cursor.

    正确答案:E

  • 第14题:

    You create a data block based on a relational table containing a REF column. You select the REF column for your form module. What is true about the items based on the REF column attributes?()

    • A、The Query Only property is set to Yes. 
    • B、The Conceal Data property is set to Yes. 
    • C、The Insert Allowed property is set to Yes. 
    • D、The Update Allowed property is set to Yes.

    正确答案:A

  • 第15题:

    You have written a custom menu for a Forms application. You saved the menu module to the file custmenu.mmb. In the Property Palette for the form, you set the Menu Module property to custmenu. When you run the form, the custom menu does not appear. What can you do to fix this problem?()

    • A、Generate the menu module executable. 
    • B、Save the menu module as custmenu.mmx. 
    • C、In the Property Sheet for the form, set the Starting Menu property to custmenu. 
    • D、In the Property Sheet for the form, set the Menu Module property to custmenu.mmb.

    正确答案:A

  • 第16题:

    At design time, you create a query record group for the LOV associated with the HOTEL text item in a form module for the Travel Planner Application. When is the record group populated?()

    • A、When the user navigates to the HOTEL item. 
    • B、When the form module successfully compiles. 
    • C、After Form Builder validates the SELECT statement and dismisses the New Record Group dialog box. 
    • D、When the user enters data in the HOTEL item, and the Validate from List property for the HOTEL item is set to YES. 

    正确答案:D

  • 第17题:

    How can you change the cursor style in your form? ()

    • A、Open the form module property palette and set the Cursor Style property. 
    • B、From the Tools menu, select Preferences-->Runtime Settings. 
    • C、Use the GET_APPLICATION_PROPERTY and SET_APPLICATION_PROPERTY built-ins. 
    • D、You cannot change the cursor style.

    正确答案:C

  • 第18题:

    How would you default the layout of a parameter form? ()

    • A、Use the default layout tool in the parameter form editor. 
    • B、Select menu item tool->parameter form builder. 
    • C、Open the parameter form editor and select menu items tool->default layout. 
    • D、You cannot default the layout of the parameters.

    正确答案:B

  • 第19题:

    单选题
    You need to create a data block for DML operations in the NEW_EMPLOYEE form module. Which data source can you use for this block?()
    A

    REF cursor query. 

    B

    Stored function. 

    C

    From clause query. 

    D

    Transactional trigger.


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

  • 第20题:

    单选题
    You are creating the SAL_INFO data block on the EMP_QUERY form. The SALARY field should only be populated if the logged-on user is a manager. Since this query could potentially return a large amount of records, you have created a stored procedure which uses a ref cursor on which to base the data block. How would you create the data block?()
    A

    Click the Data Blocks node in the Object Navigator and click the create button. Choose to build the data block manually. Enter the procedure name in the Query Data Source Columns property and the procedure code in the Query Data Source Arguments property. 

    B

    Choose Tools -> Data Block Wizard, select Table as the data source type, and base the data block on the columns included in the procedure. 

    C

    Select the Data Blocks node in the Object Navigator and click the Create button. Choose to build the data block manually, alter the Query Data Source Type property to 'Ref cursor', and enter the name of the procedure in the Query Data Source Name property. 

    D

    Select the Data Blocks node in the Object Navigator and click the Create button. Alter the Query Data Source Name, Query Data Source Columns, and Query Data Source Arguments properties to create a stored procedure that uses a ref cursor. 

    E

    Launch the Data Block Wizard, select Stored Procedures as the data source type, and base the block on the procedure.


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

  • 第21题:

    单选题
    At design time, you create a query record group for the LOV associated with the HOTEL text item in a form module for the Travel Planner Application. When is the record group deleted?()
    A

    When the user navigates to the HOTEL item. 

    B

    When the form module successfully compiles. 

    C

    After Form Builder validates the SELECT statement and dismisses the New Record Group dialog box. 

    D

    When the user enters data in the HOTEL item, and the Validate from List property for the HOTEL item is set to YES.


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

  • 第22题:

    单选题
    You are creating the DEPT_SAL data block from the PAYHIST form. Users should be able to enter a valid department ID number, which will then display the employee salary information for that department. This data block could potentially retrieve a large number of records. Since users will probably only view a small number of these records, only 10 records should be fetched at one time. How would you create the data block?()
    A

    Select The Data Blocks node in the Object Navigator and click the Create button. Choose to build the data block manually, enter the procedure name in the Query Data Source Columns property, and the procedure code in the Query Data Source Arguments property. 

    B

    Choose Tools -> Data Block Wizard, select Table as the data source type, and base the block on the columns from the tables. 

    C

    Choose Tools -> Data Block Wizard, select, View as the data source type, and base the block on the columns from the tables. 

    D

    Select the Data Blocks node in the Object Navigator and click the Create button. Choose to build the data block manually, alter the Query Data Source Type property to 'FROM clause query', and enter the SELECT statement in the Query Data Source Name property. 

    E

    Select the Data Block node in the Object Navigator and click the Create button. Alter the Query Data Source Type, Query Data Source Name, Query Data Sources Columns, and Query Data Source Arguments properties to create a stored procedure that uses a red cursor.


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

  • 第23题:

    单选题
    You established access to menu modules using roles. While testing the application, you need access to all the menus in the SALES form module for all the roles. Which method will override the Menu Module Roles property to allow you to access all the menu items?()
    A

    Disable the values for the Menu Module Roles property. 

    B

    Set the Use Security value in the form module Property Palette to 'True'. 

    C

    Set the Use Security value in the form module Property Palette to 'False'. 

    D

    Set the Use Security value in the menu module Property Palette to 'True'. 

    E

    Set the Use Security value in the menu module Property Palette to 'False'. 


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

  • 第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
    解析: 暂无解析