假定一个表单里有一个文本框Text1和一个命令按钮组CommandGroup1。命令按钮组是一个容器对象,其中包含Command1和Command2两个命令按钮。如果要在Command1命令按钮的某个方法中访问文本框的Value属性值,正确的表达式是( )。
- A.This.ThisForm.Text1.Value
- B.This.Parent.Parent.Text1.Value
- C.Parent.Parent.Text1.Value
- D.This.Parent.Text1.Value
热度🔥313
解析:打开微信小程序查看本题解析
从数据库类型上看,Access 的类型是
有以下程序
#include
typedef struct stu {
char name[10];
char gender;
int score;
} STU;
void f(STU *a, STU *b)
{ b = a;
printf("%s,%c,%d,", b->name, b->gender, b->score);
}
main()
{ STU a={"Zhao", 'm', 290}, b={"Qian", 'f', 350};
f(&a,&b);
printf("%s,%c,%d\n", b.name, b.gender, b.score);
}
程序的运行结果是
某系统结构图如下图所示:该系统结构图的最大扇出数是( )。