Uniscribe Sample
admin | Windows api | 2013-03-14
Uniscribe Sample
Sample usage of Uniscribe. Main functions are OnPaint() in ChildView.cpp. It shows simple call sequence and tag usage.
There’re three versions implemented. The first is the simplest, just using ScriptStringOut. The second and the third are for using property. Following sequence is required when using Sc... [阅读全文]
Uniscribe: The Missing Documentation & Examples
admin | C++ | 2013-03-14
http://maxradi.us/documents/uniscribe/
Brett Wilson
Uniscribe: The Missing Documentation & Examples
Index
ScriptItemize
ScriptLayout
ScriptShape
ScriptPlace
ScriptJustify
ScriptXtoCP
ScriptCPtoX
Introduction
Microsoft created an extremely powerful API called Uniscribe that allows applications to do typ... [阅读全文]
Uniscribe绘制复杂文本的说明
admin | win32 | 2013-03-14
这篇文章的目的是对微软对Uniscribe绘制复杂文本的例子进行一些说明,同时主要是对ScriptItemize、ScriptShape、ScriptPlace、ScriptLayout、ScriptTextOut等函数以及一些绘制复杂文字过程中要使用的结构体如SCRIPT_ANALYSIS、SCRIPT_CACHE、SCRIPT_STATE、SCRIPT_CONTROL等进行说明:
对于利于ScriptString绘制复杂文字,它比较简单,所以在最后给出说明... [阅读全文]
MFC 窗口抖动代码
admin | C++ | 2013-03-13
C++
int ty=5;
CRect m_rect;
GetWindowRect(&m_rect);
int recordy=m_rect.left;
int recordx=m_rect.top;
for(int i=0;i<3;i++)
{
m_rect.left=recordy;
m_rect.top=recordx;
m_rect.top = m_rect.top + ty;
m_rect.left = m_rect.left - ty;
SetWindowPos( ... [阅读全文]
MFC对话框的隐藏方法
admin | C++ | 2013-03-13
修改CXXAPP中的InitInstance函数,将原来的模态对话框改为非模态对话框,即修改
INT_PTR nResponse = dlg.DoModal();
为
dlg.Create(CModalHideDlg::IDD); //创建为非模态对话框
dlg.ShowWindow(SW_HIDE); //创建完毕后,可以设置对话框的显示方式,正常为“SW_SHOW”,
//在此,我们使用“SW_HIDE”将对话框隐藏,但是在进程列表中仍然可以看到
... [阅读全文]
Axure RP Pro 6.5.0.3044 汉化+注册码
admin | 破解工具 | 2013-03-13
软件介绍:
Axure是在 Web 产品经理中使用率最高的软件之一,主要作用是帮助网站需求设计者,快捷而简便的创建基于网站构架图的带注释页面示意图、操作流程图、以及交互设计,并可自动生成用于演示的网页文件和规格文件,以提供演示与开发。Axure 唯一的缺点就是对中文支持不够友好,除了输入汉字时会出现无法录入的问题外,最重要的就是它要求设计师们... [阅读全文]
最新Windows8 通用破解补丁
admin | 破解工具 | 2013-03-12
下载地址:http://pan.baidu.com/share/link?shareid=339868&uk=3726873729
[阅读全文]
Visual Assist X 最新版 + 通用破解程序
admin | 破解工具 | 2013-03-12
最新版下载地址:http://www.wholetomato.com/downloads/CheckForUpdate.asp?v=1918&e=&b=n&r=y&i=8&vsbld=50727
通用破解程序:http://pan.baidu.com/share/link?shareid=339656&uk=3726873729
操作步骤:
1.安装最新版: Visual Assist X
2.运行破解程序,search and pach
注意:win7以上 以管理员运行
支持 vs05 以上版本,vc6.0... [阅读全文]
fatal error LNK1112: 模块计算机类型“X64”与目标计算机类型“x86”冲突
admin | 开发问题 | 2013-03-12
在X64 平台上开发dll 文件,在生成dll时Vs 2010 出现如下错误 :“fatal error LNK1112: 模块计算机类型“X64”与目标计算机类型“x86”冲突”;
后来发现有两处需要设置:
1、右击该项目,选择属性,在最上面点击 “配置管理器”,新建平台 “x64”,然后把 活动解决方案平台选为X64,点击关闭。
2、在属性页选择 “链接器” —>“高级”,在里边有一项名为目标计算... [阅读全文]