为需要在云端做性能测试,而公司采用的供应商Windwos方面只有Windows2008版本以上。在测试机(云上)通过IE9访问系统时,发现JS无法运行。进行了以下操作,解决问题:1、更改:IE-->Internet选项-->高级-->启用第三方扩展2、IE-->Internet选项-->安全-->将...
分类:
Windows开发 时间:
2015-04-29 17:02:01
收藏:
0 评论:
0 赞:
0 阅读:
2772
源码:#includeHANDLE hInput; /* 获取标准输入设备句柄 */INPUT_RECORD inRec;/* 返回数据记录 */DWORD numRead;/* 返回已读取的记录数 */int Y,X;/* X和Y的坐标 */int input(){ while(1) { COO....
分类:
Windows开发 时间:
2015-04-29 17:00:31
收藏:
0 评论:
0 赞:
0 阅读:
171
Twinkling lights IIITime Limit: 8000msMemory Limit: 131072KBThis problem will be judged onFZU. Original ID:196864-bit integer IO format:%I64d Java cla...
分类:
Windows开发 时间:
2015-04-29 16:58:31
收藏:
0 评论:
0 赞:
0 阅读:
328
一、什么是Windows 服务?答:Microsoft Windows 服务(即,以前的 NT 服务)使您能够创建在它们自己的 Windows 会话中可长时间运行的可执行应用程序。这些服务可以在计算机启动时自动启动,可以暂停和重新启动而且不显示任何用户界面。这使服务非常适合在服务器上使用,或任何时候...
分类:
Windows开发 时间:
2015-04-29 16:53:11
收藏:
0 评论:
0 赞:
0 阅读:
494
引用:http://blog.sina.com.cn/s/blog_4b4b54da010153zb.html作为设备开发者, 一般需要让设备与上位机PC通讯, 我们往往考虑采用以下几种接口: rs232, USB, ethernet.现在在PC机上已经很难见到rs232的接口, 而ethernet...
分类:
Windows开发 时间:
2015-04-29 16:45:31
收藏:
0 评论:
0 赞:
0 阅读:
348
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:
Windows开发 时间:
2015-04-29 16:43:01
收藏:
0 评论:
0 赞:
0 阅读:
390
1.下载并且安装svn服务端setup-subversion-1.8.8.msi和客户端TortoiseSVN-1.8.6.25419-x64-svn-1.8.8.msi(注意版本号一致,以及根据电脑是32位还是64位选择)。2.建立一个仓库空文件夹D:\repos,并在repos文件夹上右键选中T...
分类:
Windows开发 时间:
2015-04-29 16:29:41
收藏:
0 评论:
0 赞:
0 阅读:
230
Web 应用中通常需要访问的 Servlet Api 就是 HttpServletRequest 、HttpSession 和 ServletContext,这三个接口分别代表 JSP内置对象中的 request、session 和 application.一、通过 struts 的 ActionC...
分类:
Windows开发 时间:
2015-04-29 14:56:21
收藏:
0 评论:
0 赞:
0 阅读:
201
1.下载10074esd文件: win10 x64 简体中文专业版:http://b1.download.windowsupdate.com/d/updt/2015/04/10074.0.150424-1350.fbl_impressive_CLIENTPRO_RET_x64fre_zh-cn_f6...
分类:
Windows开发 时间:
2015-04-29 14:54:31
收藏:
0 评论:
0 赞:
0 阅读:
1173
一·我在自己的U盘中建一个一个文件abc.word,然后删除二·用winhex打开需要恢复的磁盘我这是U盘 I:按确定打开它三.来到它的根目录下四·查找文件名,找到文件目录项 文件起始簇号:5D80十进制为:23936文件大小:9A00十进制为:39424字节转换成扇区数为:39424/512=77...
分类:
Windows开发 时间:
2015-04-29 14:49:51
收藏:
0 评论:
0 赞:
0 阅读:
213
为datagridview添加行号
1. 注册datagridview的RowPostPaint事件
2. 在事件里手动画上行号
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Wi...
分类:
Windows开发 时间:
2015-04-29 13:41:11
收藏:
0 评论:
0 赞:
0 阅读:
344
一:安装Visual Studio 2008
从microsoft的网站上下了一个VS2008 90天评估版本,注意必须是英文版。3.3G包括Doc。安装很顺利。不得不说microsoft 的东东安装就是做的好,和linux下的安装相比,可以让更多的人很容易安装(盗版?)他们的软件(他们就是这么想的?)。
二:安装Windows Mobile 6 Professional SDK
...
分类:
Windows开发 时间:
2015-04-29 13:39:51
收藏:
0 评论:
0 赞:
0 阅读:
327
git 是使用ssh方式来连接的,所以,流程与linux的ssh连接是一样的.所以只需要配置config文件就可以达到目的;
1 打开当前用户根目录(home目录)下的.ssh,创建一个config文件名的text文件;
2 内容比如编写
#github的连接配置
Host github.com
User git
IdentityFile ~/.ssh/pc...
分类:
Windows开发 时间:
2015-04-29 13:37:01
收藏:
0 评论:
0 赞:
0 阅读:
247
linq可以对多种数据源和对象进行查询,可以减少代码量,提高检索效率。感觉linq很像sql。。,但是语句的顺序不同linq的查询形式如下: from... select... where...例如查询偶数:using System;using System.Collections.Gener...
分类:
Windows开发 时间:
2015-04-29 13:28:31
收藏:
0 评论:
0 赞:
0 阅读:
147
继承一、什么继承?1.父类的相关成员,会自动派生到子类去。public protected2.子类可以扩展父类的相关成员。3.子类可以替代父类来使用,但父类不能替代子类来使用。二、继承的语法:class 子类名:父类名{ }三、继承的规则:(一)成员变量的继承1.public protected2....
分类:
Windows开发 时间:
2015-04-29 13:26:21
收藏:
0 评论:
0 赞:
0 阅读:
298
??运算符称为 null 合并运算符,用于定义可以为 null 值的类型和引用类型的默认值。如果此运算符的左操作数不为 null,则此运算符将返回左操作数;否则返回右操作数。
分类:
Windows开发 时间:
2015-04-29 13:22:21
收藏:
0 评论:
0 赞:
0 阅读:
140
1. windows xp(谁说的,win7也OK的)下的重启命令 shutdown /?用法:shutdown [/i|/l|/s|/r|/a|/p|/h|/e] [/f] /i 显示图形用户界面(GUI)。 /l 注销。这不能与 /m 或 /d 选项一起使用 /s 关闭计算机...
分类:
Windows开发 时间:
2015-04-29 13:19:11
收藏:
0 评论:
0 赞:
0 阅读:
157
sdf Label 设置背景色 Label.Foreground = new SolidColorBrush((Color)ColorConverter.ConvertFromString("#626363")); Label.BorderBrush = ...
分类:
Windows开发 时间:
2015-04-29 13:15:04
收藏:
0 评论:
0 赞:
0 阅读:
244
测试软件环境: 1、16G windows7 x64 32core cpu 。 2、jdk 1.7 tomcat 6.x solr 4.8数据库软件环境: 1、16G windows7 x64 32core cpu 。 2、Oracle 11g一、Solr默认索引工具DIH。...
分类:
Windows开发 时间:
2015-04-29 13:14:44
收藏:
0 评论:
0 赞:
0 阅读:
247
DP 找出三个正方形,可以转化为将整个油田切成三个矩形块,每块中各找一个正方形区域,切的形式只有6种,分类更新ans即可 题解:http://trinklee.blog.163.com/blog/static/238158060201482371229105/ 另:这题一般的快速读入不知为何会...
分类:
Windows开发 时间:
2015-04-29 13:12:24
收藏:
0 评论:
0 赞:
0 阅读:
198