柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
宏命令 GoToRecord 的功能是
A.刷新当前控件的数据
B.查找满足指定条件的第一条记录
C.查找满足指定条件的下一条记录
D.指定记录成为当前记录
热度🔥586
参考答案:D
解析:
【解析】宏命令GoToRecord的功能是用于指定当前记录。Requery命令用于实施控件重新查询及刷新控件数据;FindRecord命令用于查找满足指定条件的第一条记录;FindNext用于查找满足指定条件的下一条记录。
复制题目向AI提问
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
若有以下程序段 struct st{ int n; struct st *next; }; struct st a[3]={ 5,&a[1],7,&a[2],9,'\0' }, *p; p=&a[0]; 则以下选项中值为6的表达式是
有以下程序 #include main() { int a = -2, b = 0; while (a++ && ++b) ; printf("%d,%d\n", a, b ); } 程序运行后输出结果是
请分析以下程序。 int main() { pid_t pid; pid = fork(); if(pid==0) printf("I am the child process, my process ID is%d\n",getpid()); else printf("I am the parent process, my process ID is%d\n",getpid());} 那么,该程序正确运行后的结果是
标签
二级ACCESS
记录
指定
用于
查找