说明Windows3.x中如下几种按钮的功能。
举一反三
- 在Windows3.x打印管理器中常用的几种操作是什么?
- 在Windows中单击按钮或图标,几乎包括了Windows中的所有功能
- 简述Windows中的“开始”按钮和“任务栏”的功能。
- 在窗体中添加一个命令按钮Command1,并编写如下程序: PrivateSubCommand1_Click() x=InputBox(x) Ifx^2=9Theny=x Ifx^2<9Theny=1/x Ifx^2>9Theny=x^2+1 Printy EndSub 程序运行时,单击命令按钮,在InputBox中输入3,然后单击“确定”按钮,程序的运行结果为()。
- 在窗体中添加一个命令按钮 Command1 , 并编写如下程序 : Private Sub Command1_Click() x = InputBox(x) If x ^ 2 = 9 Then y = x If x ^ 2 < 9 Then y = 1 / x If x ^ 2 > 9 Then y = x ^ 2 + 1 Print y End Sub 程序运行时,单击命令按钮,在 InputBox 中输入 3 ,然后单击“确定”按钮,程序的运行结果为( )。