(单选题)
要在Form_Load事件过程中用Print方法在窗体上输出结果,应先调用窗体的()方法。
AMove
BCls
CShow
DCircle
正确答案
答案解析
略
相似试题
(单选题)
以下过程是()事件。 Prviate Sub Form_Load() …… End Sub
(单选题)
以下过程是()事件。 Prviate Sub Form_Load( ) …… End Sub
(单选题)
以下过程是()事件。 Prviate Sub Form_Load( ) …… End Sub
(判断题)
通常,文本框的Setfocus方法不能使用在Form_load事件中。
(单选题)
要使Print方法在Form_Load事件中起作用,要对窗体的()属性进行设置。
(单选题)
要使Print方法在Form_Load事件中起作用,要对窗体的()属性进行设置。
(单选题)
要使print方法在Form_Load事件中起作用,必须对窗体的()属性进行设置。
(单选题)
要使Print方法在Form_Load事件中起作用,要对窗体的()属性进行设置。
(单选题)
在窗体Form1中用"PublicSubFun(xAsInteger,yAsSingle)"定义过程Fun,在窗体Form2中定义了变量i为Integer,j为Single,若要在Form2的某事件过程中调用Form1中的Fun过程,则下列语句中,正确的语句有()个。 ①CallFun(i,j) ②CallForm1.Fun(i,j) ③Form1.Fun(i),j ④Form1.Funi+1,(j)