06 2009 档案
摘要:1.导出整个数据库 mysqldump -u 用户名 -p 数据库名 > 导出的文件名 mysqldump -u wcnc -p smgp_apps_wcnc > wcnc.sql 2.导出一个表 mysqldump -u 用户名 -p 数据库名 表名> 导出的文件名 mysqldump -u wcnc -p smgp_apps_wcnc users> wcnc_users...
阅读全文
摘要:Q:51Testing软件测试网n_p6[zBt2h@ D$~1t NP3I0 ERROR 1045 (28000): Access denied for user'root'@'localhost'(using password:YES)51Testing软件测试网-H*?U)}$h }P6H4H)W dE+A |^?5qSa051Testing软件测试网;]8`-...
阅读全文
摘要:卸载MPKG程序的简单方法 我的手机刷机后可以运行MPKG程序了,于是下载了不少试用,有的可以运行,有的则不会运行,放在手机上既影响眼观又占用空间,但这些MPKG不提供自卸载,只能用手工强行删除。方法是: 1、下载一个ultraedit编辑软件,可用百度搜一下,许多网站上有。 2、选择手机连接中USB设置为内存卡。 3、将电脑的查看文件夹选项设置为“显示所有文件”...
阅读全文
摘要:1、Adblock Plus 阻止弹出式广告,老牌插件2、FlashGot 允许调用外部下载管理器3、Fasterfox 优化您的firefox,上网冲浪变的跟迅捷4、IE Tab 让firefox内嵌ie,真正的“双核”浏览器5、MediaWraper 纠正不规范的网页内嵌媒体,让firefox能准确播放6、FoxTab 真正酷炫插件,让你发firefox有safari的...
阅读全文
摘要:新建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...
阅读全文
摘要: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); }
阅读全文
摘要:DLL的建立与使用////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////()导出函数1:导出函数__declspec(dllexport) void ShowDlg(void){ CDllDialog dllDia...
阅读全文
摘要: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 的方法大...
阅读全文
摘要://去除标题和边框 SetWindowLong(m_hWnd, GWL_STYLE, GetWindowLong(m_hWnd, GWL_STYLE) & (~(WS_CAPTION | WS_BORDER))); // 置对话框为最顶端并扩充到整个屏幕 ::SetWindowPos(m_hWnd, HWND_TOPMOST, ix,iy, iWidth,iHeight, S...
阅读全文

浙公网安备 33010602011771号