摘要: 卸载MPKG程序的简单方法 我的手机刷机后可以运行MPKG程序了,于是下载了不少试用,有的可以运行,有的则不会运行,放在手机上既影响眼观又占用空间,但这些MPKG不提供自卸载,只能用手工强行删除。方法是:   1、下载一个ultraedit编辑软件,可用百度搜一下,许多网站上有。   2、选择手机连接中USB设置为内存卡。   3、将电脑的查看文件夹选项设置为“显示所有文件”... 阅读全文
posted @ 2009-06-13 18:58 eric_lgf 阅读(565) 评论(0) 推荐(0) 编辑
摘要: 1、Adblock Plus 阻止弹出式广告,老牌插件2、FlashGot 允许调用外部下载管理器3、Fasterfox 优化您的firefox,上网冲浪变的跟迅捷4、IE Tab 让firefox内嵌ie,真正的“双核”浏览器5、MediaWraper 纠正不规范的网页内嵌媒体,让firefox能准确播放6、FoxTab 真正酷炫插件,让你发firefox有safari的... 阅读全文
posted @ 2009-06-12 11:27 eric_lgf 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 新建txt文件并输入Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSIServer]"ImagePath"=-"ImagePath"=hex(2):43,00,3a,00,5c,00,57,00,49,00,4e,00,44,00,4f,00,57,00,53,0... 阅读全文
posted @ 2009-06-11 16:03 eric_lgf 阅读(700) 评论(0) 推荐(0) 编辑
摘要: int i,n; printf("1~100之间的素数有:\n"); for(n=1;n<=100;n++) { for (i=2;i<=sqrt(n);i++) if (n%i == 0) break; if(i>sqrt(n)) printf("%d , ",n); } 阅读全文
posted @ 2009-06-07 18:24 eric_lgf 阅读(464) 评论(1) 推荐(0) 编辑
摘要: DLL的建立与使用////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////()导出函数1:导出函数__declspec(dllexport) void ShowDlg(void){ CDllDialog dllDia... 阅读全文
posted @ 2009-06-07 14:20 eric_lgf 阅读(711) 评论(1) 推荐(0) 编辑
摘要: 1 如何将字串 String 转换成整数 int? A. 有两个方法:1). int i = Integer.parseInt([String]); 或 i = Integer.parseInt([String],[int radix]);2). int i = Integer.valueOf(my_str).intValue(); 注: 字串转成 Double, Float, Long 的方法大... 阅读全文
posted @ 2009-06-07 14:19 eric_lgf 阅读(369) 评论(0) 推荐(0) 编辑
摘要: //去除标题和边框 SetWindowLong(m_hWnd, GWL_STYLE, GetWindowLong(m_hWnd, GWL_STYLE) & (~(WS_CAPTION | WS_BORDER))); // 置对话框为最顶端并扩充到整个屏幕 ::SetWindowPos(m_hWnd, HWND_TOPMOST, ix,iy,   iWidth,iHeight, S... 阅读全文
posted @ 2009-06-07 14:18 eric_lgf 阅读(256) 评论(0) 推荐(0) 编辑