- 博客(8)
- 资源 (8)
- 收藏
- 关注
转载 Data Structures in the Andrew Text Editor
With bit-mapped graphics systems, like IBMs RT PC, text can be much more than a stream of ASCII characters. There can be many variations as shown in Figure 1: differences in font, face code, siz
2007-10-30 16:12:00
1886
原创 scintilla笔记(一)编译
测试环境:win32 + Microsoft Visual C++ 2005 一、配置编译环境 At the command prompt, change to the /bin subdirectory of your Visual C++ installation. Run vcvars32.bat by typing VCVA
2007-10-30 15:02:00
1639
转载 wince的一些基础知识
Q:什么是嵌入式系统? 国际电气和电子工程师协会(IEEE)对嵌入式系统的定义是这样的:嵌入式系统是“控制、监视或者辅助设备、机器和车间运行的装置”(Devices used to control, monitor, or assist the operation of equipment, machinery or plants)。但是这个
2007-10-27 09:01:00
1049
原创 wince 下Transparent的实现
透明图片的实现,用TransparentBlt 函数来实现,可以自定义透明色。 透明窗口的实现有多种方法,根据不同的需要可以采用不同的方式。 AlphaBlend 用GetDC得到需要透过来的窗口的dc,然后将其内容拷贝到目标DC上,或者将原窗口的背景作为目标DC的brush。 OVERLAY方式 如果在应用程序
2007-10-27 08:33:00
1664
1
原创 ACE学习笔记(一):ACE的安装与配置
掌门狗、tather联合出品,转载请注明出处感谢网友汪海龙无私地提供以下电子文档:1.《ACE Programmers Guide, The: Practical Design Patterns for Network and Systems Programming》By Stephen D. Huston, James CE Johnson, Umar SyyidPublisher : Add
2007-10-27 08:11:00
1357
原创 new之后发生了什么?
int main ( ){ char *p = new char[3]; for(int i = 0; i p[i] = 1; delete [] p;}编译运行上面这个简单的例子,在VC和GCC下结果完全不同。很明显程序越界操作(写)内存了。在VC下提示出现致命错误,而在linux下gcc编译后,运行没有任何错误。这是什么原因呢?仔细调试了上面的程序,观察new之后,内
2007-10-26 09:07:00
1154
原创 如何让应用程序单实例运行
这个问题应该是大多数程序员很熟知的问题,记录再此仅仅是作为备忘录,同时对于一些小的细节问题跟大家作一些探讨。这里仅仅针对window ce 6.0系统,其它平台未做过测试,这里不做讨论。 在开发手机应用程序时,如果应用程序已经在运行,再次运行该应用程序时,我们需要把该应用程序的窗口提到前面来,把新的命令行参数传递给第一个运行实例,而第二个实例退出。从问题可以看出,
2007-10-26 08:58:00
1786
2
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人