Word 模板 - 新建向导

向导 Word 2010 Bible 上说有的模板,在基于它新建文件时,可以弹出一个新建向导。然后,我就特别地想实现这个功能,比如新建若干个节,新建目录等。 跑到 http://word.mvps.org 上搜索

VC 2010 MFC Ribbon 设计

话说几年不整上位机编程了,忽然发现,大家都Ribbon了。最近才用了Office 2010,感觉Ribbon确实还不错。 于是,自己也想整下,果

VC 2010 发布

转自 http://msdn.microsoft.com/en-us/library/dd293574.aspx When you deploy an application to another computer, you must install the application itself and any library files that the application depends on. Visual C++ 2010 gives you three ways to deploy the Visual C++ runtime with an application: central deployment, local deployment, or static linking. Central Deployment Central deployment means that your Visual C++ DLLs are installed in the System32 directory. To centrally deploy your application,

Word 其实可以很强大!

刚用上Word 2010,目前看来除了多人协作、主控文档让我失望以外,2010基本上还是令我满意的。 最近给公司写说明书,总结了许多写Word的

Ubuntu wxWidgets

用新得立安装如下软件包: # codeblocks # codeblocks-dbg # wxformbuilder # libwxgtk2.8-dev # libwxgtk2.8-dbg 安装完后,主菜单的 编程菜单中会有 codeblocks和wxformbuilder 配置codebl

Installing a package yourself

Installing a package yourself The following are the steps that you should follow to install a new LaTeX package into your own home directory. Download the package file(s) from wherever they are available. Most packages are available fromCTAN; enter appropriate keywords in the search fields to find the files. Packages may be distributed in different ways. Many packages on CTAN, for instance, come with a.dtx file and a .ins file.

各种Tex介绍

一点并不正式的说明 本帖最后由 milksea 于 2011-2-11 22:35 编辑 补充:TUG 的说明 http://www.tug.org/levels.html 我作个简单的说明。 语言层面: TeX 是一种宏语言。就像别的语言有库一样,TeX 语言有宏

ubuntu 飞鸽

飞鸽使习惯了,原来ubuntu下直接就有安装文件 下载地址: http://code.google.com/p/qipmsg/ 很好,很强大!

ubuntu 10.04 xdmcp

WinXP远程登录Ubuntu主机 ###################################### Ubuntu主机 第一步:编辑 /etc/gdm/custom.conf [daemon] User= Group= (maybe the same as your name) [security] [xdmcp] Enable=true DisplaysPerHost=2 HonorIndirect=false MaxPending=4 MaxSessions=16 MaxWait=30 MaxWaitIndirect=30 PingIntervalSeconds=60 Port=177 [greeter] [chooser] Multicast=false [debug] Enable=false ########################################## Windows主机 第二

可靠性设计 的 一小点

今天被教育了,以前我编程的时候,确实很少考虑可靠性的问题,今天问了同事两个问题,得出两条: 1、凡是外部输入都是不可靠的。 有一个模块里,FPG

RTEMS LIBIO

为了让文件支持Unix标准的open, read, write, ioctl操作, RTEMS做了一层libio的封装,封装之后,用户不必了解libio过多, 只要会用

how make none-bare git repo to bare

在云存储的时代,各种网盘都来了。 自己没事写点代码时,用用git,利用网盘的自动同步功能,便可以自己架一个私有的准git server了, 原理很

Ubuntu 163源的问题

W: GPG签名验证错误: http://ppa.launchpad.net karmic Release: 由于没有公钥,下列签名无法进行验证: NO_PUBKEY FA9C98D5DDA4DB69的解决办法 出现以上错误提示时,只要把后八位

嵌入式 C 编程 国际化和本地化 (ZZ)

Use Strings to Internationalize C Programs Submitted by webmaster on Sun, 12/02/2007 - 03:27. Embedded C/C++ by Nigel Jones Products destined for use in multiple countries often require user interfaces that support several human languages. Sloppy string management in your programs could result in unintelligible babble. A decade or two ago, most embedded systems had an extremely limited user interface. In most cases, the interface was either non-existent, or it

Ubuntu 10.04.2上编译ecos工具

主要参考: http://www.ecoscentric.com/devzone/configtool.shtml 次要参考: http://www.cublog.cn/u/2318/showart_2064983.html 下载 wxGTK-2.8.8或更高,编译之: $ mkdir wx-build $ cd wx-build $ /configure –disable-shared –disable-sockets –prefix= $ make $ make install $ cd contrib/src/gizmos (注:wxbuild/contrib

gcc 的宏替换 __stringify

每次看到类似如下的代码,总是不解,为什么要分两级定义呢,分明可以直接将__stringify定义为 #x嘛。但大家都这么做,理论上是不会有问题