jenney.qiu

导航

2015年3月13日

用鼠标动态画圆

摘要: 已知圆心坐标O(x,y),圆上一点的坐标A(xA,yA),用鼠标从A点顺时针方向画指定的度数。需要注意,X轴的正方向是→,Y轴的正方向是↓,按顺时针方向画圆实际上角度是越来越小。解题思路:画圆可以将圆的360°角划分为N等分,这里就划分为360等分,再获取每个度数所对应的圆上的点的坐标来画点,由点连... 阅读全文

posted @ 2015-03-13 10:30 jenney.qiu 阅读(2072) 评论(0) 推荐(0) 编辑

2014年12月26日

c# 串口编程

摘要: http://news.ccidnet.com/art/32859/20100524/2067861_4.html字节缓冲器处理类: /// /// 字节缓冲器 /// public class ByteQueue { private List m_buff... 阅读全文

posted @ 2014-12-26 11:30 jenney.qiu 阅读(580) 评论(0) 推荐(0) 编辑

2014年11月24日

在win server 2003上安装SQL Server 2008的步骤

摘要: 1.安装Microsoft .NET Framework 3.5 Service Pack 1,下载地址:http://www.microsoft.com/zh-cn/download/confirmation.aspx?id=222.运行SQL Server 2008安装包,安装过程中会提示需要重... 阅读全文

posted @ 2014-11-24 17:19 jenney.qiu 阅读(428) 评论(0) 推荐(0) 编辑

2014年11月13日

autoit 中_GUICtrlStatusBar_SetBkColor失效的解决办法

摘要: #include #include #include #include Dim $XS_n$Debug_SB = False ; Check ClassName being passed to functions, set to True and use a handle to another co... 阅读全文

posted @ 2014-11-13 14:56 jenney.qiu 阅读(544) 评论(0) 推荐(0) 编辑

2014年10月24日

找icon图片的好网址

摘要: https://www.iconfinder.com/ 阅读全文

posted @ 2014-10-24 18:23 jenney.qiu 阅读(470) 评论(0) 推荐(0) 编辑

2014年10月20日

在autoit中如何将combobox设置为只允许选择不允许输入呢

摘要: 在autoit中如何将combobox设置为只允许选择不允许输入呢?只需要将设置style $CBS_DROPDOWNLIST,默认的是$CBS_DROPDOWN既能输入也能选择。代码设置如下:$comboClickType = GUICtrlCreateCombo("", 112, 48, 14... 阅读全文

posted @ 2014-10-20 18:07 jenney.qiu 阅读(1055) 评论(0) 推荐(0) 编辑

2014年10月16日

创建struct类型的数组

摘要: 在autoit中,如何创建类似这样的数组呢?如下方式,数组的element只是存储的地址相邻,所以我们可以这样做$tagMYSTRUCT = "int code; char msg[10];"$mystruct = ArrayStruct($tagMYSTRUCT, 4)$fourth_elemen... 阅读全文

posted @ 2014-10-16 16:29 jenney.qiu 阅读(2207) 评论(0) 推荐(0) 编辑

2014年10月15日

simulate windows touch input

摘要: 更多信息请参考页面http://social.technet.microsoft.com/wiki/contents/articles/6460.simulating-touch-input-in-windows-8-using-touch-injection-api.aspx如何模拟windows... 阅读全文

posted @ 2014-10-15 18:05 jenney.qiu 阅读(1557) 评论(0) 推荐(0) 编辑

2014年10月8日

Could not load file using Ranorex runtime : General Questions

摘要: 如果你将编译好的bin文件夹复制到另一个未安装Ranorex程序的电脑上运行遇到如下错误信息Could not load file or assembly 'Ranorex.Core, Version=2.3.3.8879, Culture=neutral, PublicKeyToken=b7985... 阅读全文

posted @ 2014-10-08 17:58 jenney.qiu 阅读(369) 评论(0) 推荐(0) 编辑

2014年9月18日

UIAutomator 编译

摘要: 环境搭建1、必备条件: 1、JDK 2、SDK(API高于15) 3、Eclipse(安装ADT插件) 4、ANT(用于编译生成jar)2、简要步骤: 1、安装JDK并添加环境变量。 安装后,一定要通过JAVA_HOME的方式添加环境变量,即先建立JAVA_HOME变量,然后在path... 阅读全文

posted @ 2014-09-18 18:22 jenney.qiu 阅读(898) 评论(0) 推荐(0) 编辑