网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
单选题
执行命令My Form=Create Object(Form)可以建立一个表单,为了让该表单在屏幕上显示,应该执行命令(  )。
A

My Form.List

B

My Form.Display

C

My Form.Show

D

My Form.Show Form


参考答案

参考解析
解析:
一个对象即使是隐藏的,在代码中仍可以访问它。当一个表单由活动变成隐藏时,最近活动的表单或其他对象将成为活动的。当一个表单的Visible属性由F设置成T时,表单将成为可见的,但并不成为活动的。要使一个表单成为活动的,可使用Show方法。Show方法在使表单成为可见的同时,使其成为活动的。
更多 “单选题执行命令My Form=Create Object(Form)可以建立一个表单,为了让该表单在屏幕上显示,应该执行命令(  )。A My Form.ListB My Form.DisplayC My Form.ShowD My Form.Show Form” 相关考题
考题 She is of(). A、the age as old as my motherB、the same age as my mother'sC、the same old as my motherD、the same age as my mother

考题 They may increase their production with the new equipment, __________. A. in my estimateB. by my estimateC. by my viewD. by my opinion

考题 ( ).My mother is a high school teacher but my father is an engineer. A、None of my parents is a teacherB、Neither of my parents is a teacherC、Either of my parents is a teacherD、Both my parents are not teachers

考题 下面哪条命令可用来确保文件“my file”存在()。A.cpmyfile/dev/nullB.touch my fileC.create my fileD.mkfile my file

考题 根据orderl表和cust表建立一个查询queryl,查询出公司所在地是“北京”的所有公司的名称、订单日期、送货方式,要求查询去向是表,表名是queryl.bf,并执行该查询。(2)建立表单my_form,表单中有两个命令按钮,按钮的名称分别为cmdyes和cmdno,标题分别为“登录”和“退出”。

考题 在Visual PoxPro中有如下程序文件TEST: *程序名:TEST.PRG *调用方法:DO TEST SET TALK OFF CLOSE ALL mX=“Visual FoxPro” mY=“二级” DO SUB1 WITH mY ?mY+mX RETURN *子程序:SUB1,PRG PROCEDURE SUB1 PARAMETERS mY mY=“计算机等级”+mY RETURN 执行命令DOTEST后,屏幕的显示结果为A.二级Visual FoxProB.计算机等级二级Visual FoxProC.计算机等级Visual FoxProD.计算机等级二级

考题 执行命令MyForm=CreateObject("Form")可以建立一个表单,为了让该表单在屏幕上显示,应该执行命令( )。A.MyForm.ListB.MyForm.DisplayC.MyForm.ShowD.MyForm.ShowForm

考题 执行命令MyForm=CreateObject("Form")可以建立一个表单,为了让该表单在屏 幕上显示,应该执行命令( )。A.MyForm.ListB.MyForm.DisplayC.MyForm.ShowD.MyForm.ShowForm.

考题 执行命令MyForm=Create Objeet(”Form”)可以建立一个表单,为了让该表单在屏幕上显示,应该执行命令( )。A. MyForm.ListB. MyForm.DisplayC. MyForm.ShowD. MyForm.Show Form

考题 建立项目文件,名为my。(2)将数据库nba添加到新建立的项目当中。(3)修改表单my,将其中的命令按钮删除。(4)把表单my添加到项目my中。

考题 编写一个Java程序在屏幕上输出“This is my program!”

考题 33._________is on my desk.A. My clockB.Jim's old watchC. My new watchD. My bag

考题 ( 24 )执行命令 MyForm=CreateObject("Form") 可以建立一个表单,为了让该表单在屏幕上显示,应该执行命令A ) MyForm.ListB ) MyForm.DisplayC ) MyForm.ShowD ) MyForm.ShowForm

考题 of my three students,one is form English, ( ) are form London A the other B the others C another D others

考题 简述管道文件的实现机制。执行命令cat my file|wc–l的输出应是什么?

考题 “女神”的词最初来源于?()A、MY GODNESSB、My little PonyC、My destinyD、My bog

考题 假设表单My Form隐藏着,让该表单在屏幕上显示的命令是()A、MyForm.LisB、MyForm.DisplayC、MyForm.ShowD、MyForm.ShowForm

考题 在Java语言中,小明在他的包mypackage中定义类My_Class,在mypackage的子包mysubpackage中也有个类My_Class。小明用import mypackage.*;引入包,执行其中的语句:My_Class NewClass=new My_Class();时,将发生()。A、创建一个类mypackage.My_Class的对象B、创建一个类mypackage.mysubpackage.My_Class的对象C、该语句是错误的D、创建一个类mypackage.My_Class的对象和一个类mypackage.Mysubpackage.My_Class的对象

考题 You need to create a JSP that generates some JavaScript code to populate an array of strings used on theclient-side. Which JSP code snippet will create this array?()A、MY_ARRAY = new Array();% for ( int i = 0; i  serverArray.length; i++ ) { MY_ARRAY[%= i %] = ’%= serverArray[i] %’;} %B、MY_ARRAY = new Array();. % for ( int i = 0; i  serverArray.length; i++ ) { . MY_ARRAY[${i}] = ’${serverArray[i]}’;. } %C、MY_ARRAY = new Array();. % for ( int i = 0; i  serverArray.length; i++ ) { % . MY_ARRAY[%= i %] = ’%= serverArray[i] %’;. % } %D、MY_ARRAY = new Array();% for ( int i = 0; i  serverArray.length; i++ ) { % . MY_ARRAY[${i}] = ’${serverArray[i]}’;. % } %

考题 定义一个类名为"MyClass.java"的类,并且该类可被一个工程中的所有类访问,那么该类的正确声明应为()。A、private class My Class extends ObjectB、class My Class extends ObjectC、public class My ClassD、public class My Class extends Object

考题 单选题为顶层表单添加菜单时,如果在表单的Init事件代码中加入了命令do my.mpr with this,"aaa",则在表单的Destroy事件代码为清除菜单而加入的命令应该是()。A destroy menu my.mpr extendedB release menu my.mpr extendedC release menu aaa extendedD destroy menu aaa extended

考题 单选题当配位反应时存在酸效应和配位效应两种副反应,以下表达式中正确的是()A K’MY=C’MY/C’M•C’YB K’MY=[MY]/C’M•C’YC K’MY=[MY]/[M][Y]D K’MY=KMY/αM(L)•αY(H)

考题 单选题在Java语言中,小明在他的包mypackage中定义了类My_Class, 在mypackage的子包mysubpackage中也有个类My_Class。小明用 import mypackage.*;引入包, 执行其中的语句: My_Class NewClass = new My_Class();时,将发生()。A 创建一个类mypackage.My_Class的对象B 创建一个类mypackage.mysubpackage.My_Class的对象C 该语句是错误的D 创建一个类mypackage.My_Class的对象和一个类mypackage.mysubpackage.My_Class的对象

考题 单选题—Where did you have your supper? —_____.A With my uncleB At my uncle homeC At my uncleD At my uncle's

考题 单选题假设表单My Form隐藏着,让该表单在屏幕上显示的命令是()A MyForm.LisB MyForm.DisplayC MyForm.ShowD MyForm.ShowForm

考题 单选题I object ______ as he is still too young.A my son to smokeB my son smokingC to my son to smokeD to my son’s smoking

考题 单选题My propeller was hit by a steel barge lying().A aheadB asternC alongside my port bowD alongside my starboard bow