【单选题】【消耗次数:1】
假定在图片框Picture1中装入了一个图形,为了清除该图形(不删除图片框),应采用的正确方法是。
执行语句Picture1.Picture =
执行语句Picture1.Picture = LoadPicture ()
选择图片框,然后按Del键
选择图片框,在属性窗口中选择Picture属性条,然后按回车键
参考答案:
复制
纠错
相关题目
【单选题】 假定Picture1和Text1分别为图片框和文本框的名称,下列不正确的语句是()。
①  Print26
②  Picture1.Print26
③  Text1.Print26
④  Debug.Print26
【单选题】 要在页面上创建一个指向上一级目录中文件picture1.htm的链接,在属性检查器的链接栏中应该输入( )。
①  A、/ picture1.htm
②  B、../ picture1.htm
③  C、picture1.htm
④  D、mailto: picture1.htm
【判断题】 在HTML源代码中,图像的属性用picture 标记来定义。
①  正确
②  错误
【单选题】 下面关于图片框和图像框的叙述,正确的是( )。
①  图片框和图像框都可以作为容器控件
②  图片框可以作为容器控件,图像框不可以作为容器控件
③  图像框可以作为容器控件,图片框不可以作为容器控件
④  图片框和图像框都不可以作为容器控件
【判断题】 The boy draws a picture now.
①  正确
②  错误
【多选题】 Isnt that picture_____________ too high on the wall?
①  puts
②  places
③  put
④  placed
【单选题】 Once a picture is proved to be a forgery, it becomes quite ___.
①  invaluable
②  priceless
③  worthless
④  valuable
【单选题】 It is[填空]picture of[填空]elephant on[填空]wall.
①  a,an,the
②  a,the,an
③  the,a,an
④  an,a,the
【单选题】 The worker put up a picture [填空] the wall.
①  in
②  on
③  at
④  for
【单选题】 在单击文本框后,按( )键,删除文本框。
①  Enter
②  Alt
③  Del
④  Shift
随机题目
【简答题】 下列程序的输出结果是[填空1]。#includestdio.hmain(){ char a;a=Aprintf(%d%c,a,a); }
【简答题】 以下程序输出的结果是[填空1]。#include stdio.hvoid main(){int x, i;for(i=1; i i++){ x=i;if(++x%2==0)if(++x%3==0)if(++x%7==0)printf(%d\n,x);}printf(“\n”);}
【简答题】 有以下程序#includestdio.hmain(){ int x;scanf(%d,if(x15) printf(%d,x-5);if(x10) printf(%dif(x5) printf(%d\n,x+5); }若程序运行时从键盘输入12回车,则输出结果为[填空1]。
【简答题】 有以下程序(说明:字符0的ASCII码值为48)#includestdio.hmain(){ char c1,c2;scanf(%d,c2=c1+9;printf(%c%c\n,c1,c2); }若程序运行时从键盘输入48回车,则输出结果为[填空1]。
【判断题】 计算机程序设计语言分为机器语言、汇编语言、高级语言和自然语言。
①  正确
②  错误
【单选题】 有以下程序#include stdio.hmain(){ int a;scanf(%d ,if(a++9) printf(%d\nelse printf(%d\n }程序运行时从键盘输入9回车,则输出的结果是。
①  10
②  11
③  9
④  8
【单选题】 以下哪一个可以作为正确的变量名()。
①  for
②  $abc
③  3*x
④  _file
【单选题】 以下哪一个不是正确的C语言常量()。
①  0x2ac
②  3.25e-8
③  800
④  0486
【单选题】 写出下面程序的执行结果。main( ){ int x,y=1; if(y!=0) printf(“%d\t”,x); if(y= =0) else printf(“%d\t\n”,x);}
①  1 3
②  1 5
③  5 3
④  5 5
【单选题】 若有定义:double a=22;int i=0,k=18;,则不符合C语言规定的赋值语句是()
①  a=a++,i++;
②  i=(a+k)=(i+k);
③  i=A%11;
④  i=!a;