会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
一样菜
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
···
21
下一页
2017年7月19日
Sciter参考资料
摘要: http://www.terrainformatica.com/2014/07/sciter-video-support/
阅读全文
posted @ 2017-07-19 18:02 一样菜
阅读(470)
评论(0)
推荐(0)
2017年7月14日
C++对windows控制面板的操作
摘要: 经常碰到程序无法卸载, 就老是骂微软搞的什么安装方式,安装好了不能卸载. 后来就打算研究一下windows是如何卸载程序的,一个程序安装完后留下了什么信息用于后面的卸载. 研究对象win7 64位, 程序npviewinie. 程序安装后生成的最主要的注册表项是在以下三个中 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVers...
阅读全文
posted @ 2017-07-14 18:05 一样菜
阅读(884)
评论(0)
推荐(0)
2017年7月11日
C++ Msi函数判断应用是否已经安装
摘要: #include #include #pragma comment(lib, "Msi.lib") bool CheckExistSoftware(wchar_t *upgradeCode) //可以通过工具Orca查看安装包相应的upgradeCode { wchar_t productCode[39]; if (ERROR_SUCCESS ==...
阅读全文
posted @ 2017-07-11 12:03 一样菜
阅读(1077)
评论(0)
推荐(0)
2017年7月7日
WMware 安装 Mac OSX
摘要: 1,下载unlock.zip工具,破解VMware没有mac选项情况 2. 下载OS X 10.11.1(15B42).cdr 3.MWare虚拟机提示:“锁定文件失败,打不开磁盘或快照所依赖的磁盘”的解决方法 然后以下面关键字搜索这个文件夹:*.lck 我这里找到了三个,删除即可,删除后,就不再提示上面第一个图的错误了: 4.VMware Workstation 不可恢复错误: (vcpu-...
阅读全文
posted @ 2017-07-07 00:11 一样菜
阅读(259)
评论(0)
推荐(0)
2017年7月6日
C++文件流操作
摘要: #include #include #include using namespace std; int main() { char sourcename[80],destname[80],buffer[256]; int n; cout>sourcename; cout>destname; ifstream i...
阅读全文
posted @ 2017-07-06 12:27 一样菜
阅读(419)
评论(0)
推荐(0)
2017年6月16日
jquery弹出层
摘要: http://www.jq22.com/yanshi4475
阅读全文
posted @ 2017-06-16 12:06 一样菜
阅读(110)
评论(0)
推荐(0)
CSS3 水平翻转
摘要: .button_1:hover #button1_img,.button_2:hover #button2_img{ box-shadow: 0 0 10px #9AFE2E; animation: rotate-x 0.4s; -moz-animation: rotate-x 0.4s; /* Firefox */ -webkit-animation: rota...
阅读全文
posted @ 2017-06-16 00:03 一样菜
阅读(2680)
评论(0)
推荐(0)
2017年6月13日
Twain 资料网
摘要: https://www.manualslib.com/manual/288056/Kodak-Ngenuity-9090db.html?page=55#manual
阅读全文
posted @ 2017-06-13 11:12 一样菜
阅读(200)
评论(0)
推荐(0)
2017年6月5日
C++服务器下载文件的两种方式
摘要: #include <afxinet.h>#include "wininet.h"
阅读全文
posted @ 2017-06-05 14:34 一样菜
阅读(3802)
评论(0)
推荐(0)
2017年5月15日
MFC从资源加载文本
摘要: bool CWizardSheet::GetTextResource(UINT uID, CString& csContent) { HMODULE hModule=GetModuleHandle(NULL); HRSRC hRes = FindResource(hModule,MAKEINTRESOURCE(uID),_T("txt")); if(...
阅读全文
posted @ 2017-05-15 00:22 一样菜
阅读(987)
评论(0)
推荐(0)
2017年5月12日
Twain
摘要: 3.7.37 ICAP_SUPPORTEDSIZESType:TW_UINT16Supported Messages:MSG_GET - TW_ENUMERATIONMSG_GETCURRENT - TW_ONEVALUEMSG_GETDEFAULT - TW_ONEVALUEMSG_RESET – TW_ONEVALUEMSG_SET – TW_ONEVALUE, TW_ENUMERATION...
阅读全文
posted @ 2017-05-12 16:18 一样菜
阅读(420)
评论(0)
推荐(0)
2017年4月29日
python搭建简单http文件服务器
摘要: import SimpleHTTPServer import SocketServer PORT = 8000 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler httpd = SocketServer.TCPServer(("", PORT), Handler) print "serving at port", PORT httpd...
阅读全文
posted @ 2017-04-29 15:04 一样菜
阅读(1150)
评论(0)
推荐(0)
2017年4月21日
git
摘要: http://git.oschina.net/ https://coding.net/
阅读全文
posted @ 2017-04-21 19:01 一样菜
阅读(128)
评论(0)
推荐(0)
PDF to image
摘要: http://www.verypdf.com/pdf2tif/pdf-to-image/help.htm http://www.softinterface.com/DL/DL_Alternate_Download_Site2.htm http://www.morethantechnical.com/
阅读全文
posted @ 2017-04-21 00:30 一样菜
阅读(495)
评论(0)
推荐(0)
2017年4月10日
wchar_t和char转化
摘要: char* WcharToChar(const wchar_t* wp) { char *m_char; int len = WideCharToMultiByte(CP_ACP, 0, wp, wcslen(wp), NULL, 0, NULL, NULL); m_char = new char[len + 1]; WideCharToMultiByte(CP_ACP, 0, wp, ...
阅读全文
posted @ 2017-04-10 10:33 一样菜
阅读(761)
评论(0)
推荐(0)
2017年4月6日
C++判断是否连接服务器
摘要: BOOL CheckServerStatus::isConnectServer(CString serverName, int serverPort) { CString strURL; strURL.Format("http://%s:%d", serverName, serverPort); BOOL hSession = GetSession(strURL); return hSe...
阅读全文
posted @ 2017-04-06 16:54 一样菜
阅读(1712)
评论(0)
推荐(0)
Scriter CSS
摘要: transition: height(quart-out,1.0s,quart-in); transform:rotate(50deg); http://www.terrainformatica.com/category/sciter/ css 文档 css透明度 opacity:0.3; 颜色渐变 background: -ms-linear-gr...
阅读全文
posted @ 2017-04-06 13:40 一样菜
阅读(214)
评论(0)
推荐(0)
2017年4月5日
MFC窗口阴影
摘要: SetClassLong(this->m_hWnd, GCL_STYLE, GetClassLong(this->m_hWnd, GCL_STYLE) | CS_DROPSHADOW);
阅读全文
posted @ 2017-04-05 16:20 一样菜
阅读(1096)
评论(0)
推荐(0)
2017年3月31日
TIScript Graphics
摘要: $(#main_frame).paintContent = function(gfx) { gfx.pushLayer(#background-area); gfx.translate(0.5,0.5); gfx.strokeColor(color(255,255,255)) gfx....
阅读全文
posted @ 2017-03-31 12:53 一样菜
阅读(457)
评论(0)
推荐(0)
2017年3月30日
MFC接收命令行参数的三种方法
摘要: 方法一: 方法二: 方法三:
阅读全文
posted @ 2017-03-30 16:47 一样菜
阅读(4110)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
···
21
下一页
公告