按类别查询搜索结果
关于关键词 的检测结果,共 763
Syunpeng2012 | 2015-01-27 10:54:38 | 阅读(1600) | 评论(0)
   /// <summary>        /// 限制子窗体的个数        /// </summary>        /// <param name="p_ChildrenFormName"></param>        /// <returns></returns>        private bool showChildrenFo...【阅读全文】
dreamjdn | 2015-01-26 22:29:12 | 阅读(2520) | 评论(0)
在程序流程中经常要延时一段时间后再继续往下执行,在VB中常用的有以下几种方法(因为Timer控件打乱了程序的流程所以一般不用它):1.使用Windows API函数Sleep新建一个工程,添加一个TextBox控件和一个CommandButton控件,再将以下代码复制到代码窗口'声明:Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds ...【阅读全文】
dyli2000 | 2015-01-07 10:33:18 | 阅读(2520) | 评论(0)
转自博客:http://www.notelee.com/combobox-is-choosed.html如何判断combobox是否选中?如何判断Combobox输入的文本为空?无论combobox绑定的数据源是什么对象,最终显示在UI上面的内容都是以Text为基准。所以comboBox1.Text 非常有用。 放置一个combobox 和一个 button 在button的click事件中通过如下代码...【阅读全文】
dyli2000 | 2015-01-04 10:32:50 | 阅读(1860) | 评论(0)
VS2010大左括号置新行,使得左右括号自动对齐设置   C#代码批量格式化: CTRL+K,F【阅读全文】
x4949 | 2014-12-27 10:43:53 | 阅读(10) | 评论(0)
周杰伦(周董)25日在台北举办新专辑《哎呦,不错哦》发片记者会,话题全围绕在他和女友昆凌婚事,他将在明年1月18日完婚,但婚礼地点仍保密,他承认已在英国求婚,并非遭曝料的海德公园,求婚过程他浪漫下跪还制造惊喜放烟火,根本是“当MV在拍。”周董坦言,未来想生五个小孩可以组乐团,昆凌同意吗?他笑说:“生五个好像...【阅读全文】
kade24 | 2014-12-26 15:19:54 | 阅读(70) | 评论(0)
  四川在线消息(叶丹 四川在线记者丁宁)近日,从成都国际航空枢纽综合功能区管委会了解到,截至11月底,成都空港国际快件中心共处理快件20.84万票、1035吨,其中进境个人物品监管辅助系统处理申报单5.3万票,货重105.69吨,货值1769.5万元。个人物品规范管理系统有效提高了口岸作业能力,夯实了我县跨境电子商务综合...【阅读全文】
jhtgjbgvnbgn | 2014-12-22 12:32:24 | 阅读(220) | 评论(1)
Among the mosttimberland predominant areas of that footwear and even ft . business at present is the using boots and shoes that provide an even more recreational and trendy overall appeal as well as unbelievable ease and comfort plus specific sport elegance. In truth, using this method is usuall...【阅读全文】
高一生一世姜 | 2014-12-15 11:00:48 | 阅读(2200) | 评论(0)
#include <stdio.h>double calculetor (double a,double b,char myoperator){ if (myoperator =='+') {  return a+b; } else if (myoperator =='-') {  return a-b; } else if (myoperator =='*') {  return a*b; } ...【阅读全文】
高一生一世姜 | 2014-12-12 16:09:26 | 阅读(1780) | 评论(0)
#include <stdio.h>int main(){ int a[10];    int i,j,k; printf("输入10个数\n"); for(i=0; i<10; i++) {  scanf("%d",&a[i]); } printf("\n"); for(j=0; j<9; j++) {  for(i=0; i<9-j; i++)  {   ...【阅读全文】
yztx111 | 2014-12-11 11:28:07 | 阅读(110) | 评论(0)
省级网站群建设关注点【阅读全文】
杨艳杰 | 2014-12-10 08:03:14 | 阅读(1910) | 评论(0)
点击(此处)折叠或打开using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace @class{    class Program &nbs...【阅读全文】
杨艳杰 | 2014-12-09 21:49:34 | 阅读(2040) | 评论(0)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;...【阅读全文】
高一生一世姜 | 2014-12-09 15:49:36 | 阅读(1300) | 评论(0)
#include  main()  {  char zifu; int b,c,d,e; b=0; c=0; d=0; e=0; while(1) {  scanf("%c",&zifu);  if(zifu>=48&&zifu=65&&zifu【阅读全文】
高一生一世姜 | 2014-12-09 15:17:21 | 阅读(1580) | 评论(0)
#include<stdio.h>  main()  {  int acount=0,bcount=0,ccount=0,dcount=0;  char a;   printf("请输入一行字符:\n");   a = getchar();   while (a !='\n')   {   switch (a)   { ...【阅读全文】
青竹玉简 | 2014-12-08 15:19:35 | 阅读(2690) | 评论(0)
解决方式:一.1) 在解决方案资源管理器中,右击相应的.cpp文件,点击“属性”2) 在左侧配置属性中,点开“C/C++”,单击“预编译头”3) 更改右侧第一行的“创建/使用预编译头”,把选项从“使用预编译头(/Yu)”改成“不使用预编译头”4) 注:每一个报错的.cpp都要如此更改哦~辛苦一下呗~二....【阅读全文】
青竹玉简 | 2014-12-08 14:12:36 | 阅读(22730) | 评论(0)
D:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE具体步骤:开始->运行->输入cmd 按运行出来黑色DOS框。(以下步骤因人而异,要看你的C++装在哪个盘了。我是D盘所以按照D盘的说)输入d:按回车(如果你的是C盘 那就c: 按回车 以下差异不一一说明)自动跳入d盘输入cd Program Files\Microsoft Visual Stud...【阅读全文】
644924073 | 2014-11-28 22:57:03 | 阅读(660) | 评论(0)
方法一:WINDOWS API画法 //获取要绘制的窗口句柄 Image img = GetWindow(this.tabPage12.Handle); //在母容器上创建图形对象 Graphics gOut = mOut.pnlOut.CreateGraphics(); //在指定位置按指定大小绘出image gOut.DrawImage((Image)img, form1.pnlImage.DisplayRectangle, this.tabPage12.DisplayRectangle, Gra...【阅读全文】
zenmeshuone1 | 2014-11-27 23:43:01 | 阅读(50) | 评论(0)
http://user.qzone.qq.com/2367838645/main
http://user.qzone.qq.com/2367886875/main
http://user.qzone.qq.com/2369572102/main

http://user.qzone.qq.com/2369590098/main
http://user.qzone.qq.com/2369654846/main
http://user.qzone.qq.com/2375533524/main
http://user.qzone.qq.com/2376246945/main
http://user.qzone.qq.com/2376287368/main
http://user.qzone.qq.com/2376445809/main
http://user.qzone.qq.com/2376518646/main
http://user.qzone.qq.com/2376540688/main
http://user.【阅读全文】
喜欢你的微 | 2014-11-26 11:48:17 | 阅读(460) | 评论(0)
  指针变量可以指向一个结构数组,这时结构指针变量的值是整个结构数组的首地址。结构指针变量也可指向结构数组的一个元素,这时结构指针变量的值是该结构数组元素的首地址。  设ps为指向结构数组的指针变量,则ps也指向该结构数组的0号元素,ps+1指向1号元素,ps+i则指向i号元素。这与普通数组的情况是一致的。...【阅读全文】
高一生一世姜 | 2014-11-24 22:03:13 | 阅读(1370) | 评论(0)
/*NAME:   TESTAUTHOR: DDDDDDATE  :  2014-11-24MODIFY:  2014-11-24 10:23*/#include <stdio.h> int main(){ int a,b,c;a = 25;   //十进制b = 025;  //以0开头的是八...【阅读全文】