填空题

在Access中, 【15】 查询的运行一定会导致数据表中数据的变化。

【参考答案】

操作
<上一题 目录 下一题>
热门 试题

填空题
在窗体中添加一个命令按钮cmd和一个文本框txt,然后编写如下事件过程: Private Sub cmd_click( ) Dim x As Integer, y As Integer, z As Integer x=5 y=7 z=0 Me! Txt= Call p(x,y,z) Me! txt=z End Sub Sub p(a As Integer, b As Integer, e As Integer) c=a+b End Sub 单击按钮,文本框显示的内容是 【12】 。
填空题
在窗体中添加命令按钮cmd,并编写如下程序: Funtion panduan(x As Integer,y As Integer) As Integer panduan=IIF(x>y,x,y) End Function Private Sub cmd_click() Dim a As Integer,b As Integer a=4 b=7 MsgBox panduan( a, b) End Sub 打开窗体单击命令按钮,消息框中输出的结果为 【10】 。
相关试题
  • 为某个窗体编写如下事件,单击窗体,消息框...
  • 现有一文本框,利用失去焦点触发事件过程改...