未知题型
未知题型 在窗体上画一个通用对话框,其名称为CommonDialogl,然后画一个命令按钮,并编写如下事件过程: Private Sub Command1_Click() CommonDialogl.Flags=cdlOFNHideReadOnly commonDialogl.Filter='All Files(*.*)|*.*| Text Files'&_ '(*.txt)|*.txt|Batch Files(*.bat)|*.bat' CommonDialogl.Filterlndex=1 CommonDialogl.ShowOpen MsgBox CommonDialogl.FileName End Sub 程序运行后,单击命令按钮,将显示一个“打开”对话框,此时在“文件类型”框中显示的是 ______。A.AllFiles(*.*)B.TextFiles(*.txt)C.BatchFiles(*.bat)D.不确定
单项选择题 设A(0,1,0), B(1,0,1),C(1,2,1),D(1,2,2),则过直线AB且将四面体ABCD分成两个等积部分的平面方程为( ).
未知题型 编写如下事件过程: Private Sub Form. KeyDown(KeyCode As Integer,Shift As Integer) If(Button And 3)=3 Then Print 'AAAA' End If End Sub 程序运行后,为了在窗体上输出'AAAA',应按下的鼠标键为 ______。D.按什么键都不显示