jenney.qiu

导航

2014年7月24日

autoit UIA获取Listview的信息

摘要: #include "CUIAutomation2.au3"Opt( "MustDeclareVars", 1 )Global $oUIAutomationMainFunc()Func MainFunc() ; Be sure to use the right class if you are on... 阅读全文

posted @ 2014-07-24 11:55 jenney.qiu 阅读(2321) 评论(0) 推荐(0) 编辑

2014年6月10日

读取计算机的OEM信息

摘要: 只需要读取注册表里面的值即可HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation\Logo下面有制造商、Logo等信息 阅读全文

posted @ 2014-06-10 18:49 jenney.qiu 阅读(306) 评论(0) 推荐(0) 编辑

读取默认浏览器

摘要: 此处用autoit脚本语言获取本机默认浏览器Progid,打开http或https的URL,打开一个.htm或.html文件;Open a default http or https urlLocal $Open_http_URL = RegRead("HKEY_CURRENT_USER\Softw... 阅读全文

posted @ 2014-06-10 14:41 jenney.qiu 阅读(381) 评论(0) 推荐(0) 编辑

2014年5月15日

如何切换android的横屏与竖屏?

摘要: 选中需要切换的模拟器,按住CTRL+F11或者CTRL+F12即可进行切换。 阅读全文

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

eclipse 拨打电话、拨号,发短信

摘要: 1.拨打电话,拨号//拨打电话Intent intent = new Intent();intent.setAction(Intent.ACTION_CALL);intent.setData(Uri.parse("tel:"+phoneNumber));startActivity(intent);/... 阅读全文

posted @ 2014-05-15 08:42 jenney.qiu 阅读(729) 评论(0) 推荐(0) 编辑

2014年5月5日

Android Studio使用中的小常识

摘要: 1.如何继承抽象类? 1.1新建一个类如下: public class PersonDBOpenHelper{ } 1.2手写extends 你继承的类名 public class PersonDBOpenHelper extends SQLiteOpenHelper{ } 系统会提示此类... 阅读全文

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

2014年3月27日

Quick Sort

摘要: class Program { static int[] a = new int[] { 6, 1, 2, 7, 9, 3, 4, 5, 10, 8 }; int n; static void Main(string[] args) { int i; int n = 9; quicksort(0, n); for (i = 0; i right) return; temp = a[left];... 阅读全文

posted @ 2014-03-27 15:17 jenney.qiu 阅读(177) 评论(0) 推荐(0) 编辑

2014年2月19日

win8或win8.1修改注册表失败的原因

摘要: win8 and win8.1 modify the registry need compiled to be different versions according to the os bits. 阅读全文

posted @ 2014-02-19 15:48 jenney.qiu 阅读(1133) 评论(0) 推荐(0) 编辑

2014年1月14日

Change screensaver through registry

摘要: If you wanna change the screensaver, you can update registry as follows{autoit script}:RegWrite("HKEY_CURRENT_USER\Control Panel\Desktop", "ScreenSaveTimeOut", "REG_SZ", "60")RegWrite("HKEY_CURRENT_USER\Control Panel\Desktop", "SCRNSAVE.EXE" 阅读全文

posted @ 2014-01-14 14:39 jenney.qiu 阅读(320) 评论(0) 推荐(0) 编辑

2013年10月30日

EF调用存储过程遇到的问题

摘要: 注意实体类Statistics的字段名和存储过程返回集合的列名要相同才行 阅读全文

posted @ 2013-10-30 14:52 jenney.qiu 阅读(153) 评论(0) 推荐(0) 编辑