TIM2@8bpp TIM2@24bpp读取测试 (二)
[
2006/11/08 11:47 | by FalconIA ]
2006/11/08 11:47 | by FalconIA ]
TIM2@8bpp TIM2@24bpp读取测试
[
2006/11/07 08:22 | by FalconIA ]
2006/11/07 08:22 | by FalconIA ]
AFS Tool (A module of PS2Extractor) [06.11.03]
[
2006/11/04 12:09 | by FalconIA ]
2006/11/04 12:09 | by FalconIA ]
VB.NET窗体操作技巧两则
[
2006/01/26 11:18 | by FalconIA ]
2006/01/26 11:18 | by FalconIA ]
Dragging Files From Windows to VB.net without API
[
2006/01/26 10:11 | by FalconIA ]
2006/01/26 10:11 | by FalconIA ]
作 者:MSDN
引用自:http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vstechart/ht...
Dragging Files
Drag and drop is used pervasively in Windows for moving or copying files. Windows Explorer fully supports drag and drop, and for many users this is the preferred method of working with files. In addition, many users are accustomed to dropping files onto an application to open them — for example, dragging and dropping a .doc file onto Microsoft Word.
In this example drag and drop is used to populate a ListBox control with a list of files dragged from Windows Explorer.
引用自:http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vstechart/ht...
Dragging Files
Drag and drop is used pervasively in Windows for moving or copying files. Windows Explorer fully supports drag and drop, and for many users this is the preferred method of working with files. In addition, many users are accustomed to dropping files onto an application to open them — for example, dragging and dropping a .doc file onto Microsoft Word.
In this example drag and drop is used to populate a ListBox control with a list of files dragged from Windows Explorer.
谈谈Windows程序中的字符编码
[
2006/01/23 03:52 | by FalconIA ]
2006/01/23 03:52 | by FalconIA ]
作 者:fmddlmyy
转载自:http://blog.csdn.net/fmddlmyy/archive/2005/06/21/399661.aspx
写这篇文章的起因是这么一个问题:我们在使用和安装Windows程序时,有时会看到以“2052”、“1033”这些数字为名的文件夹,这些数字似乎和字符集有关,但它们究竟是什么意思呢?
研究这个问题的同时,又会遇到其它问题。我们会谈到Windows的内部架构、Win32 API的A/W函数、Locale、ANSI代码页、与字符编码有关的编译参数、MBCS和Unicode程序、资源和乱码等,一起经历这段琐碎细节为主,间或乐趣点缀的旅程。
转载自:http://blog.csdn.net/fmddlmyy/archive/2005/06/21/399661.aspx
写这篇文章的起因是这么一个问题:我们在使用和安装Windows程序时,有时会看到以“2052”、“1033”这些数字为名的文件夹,这些数字似乎和字符集有关,但它们究竟是什么意思呢?
研究这个问题的同时,又会遇到其它问题。我们会谈到Windows的内部架构、Win32 API的A/W函数、Locale、ANSI代码页、与字符编码有关的编译参数、MBCS和Unicode程序、资源和乱码等,一起经历这段琐碎细节为主,间或乐趣点缀的旅程。
谈谈Unicode编码,简要解释UCS、UTF、BMP、BOM等名词
[
2006/01/23 03:42 | by FalconIA ]
2006/01/23 03:42 | by FalconIA ]
作 者:fmddlmyy
转载自:http://blog.csdn.net/fmddlmyy/archive/2005/05/04/372148.aspx
这是一篇程序员写给程序员的趣味读物。所谓趣味是指可以比较轻松地了解一些原来不清楚的概念,增进知识,类似于打RPG游戏的升级。整理这篇文章的动机是两个问题:
问题一:
使用Windows记事本的“另存为”,可以在GBK、Unicode、Unicode big endian和UTF-8这几种编码方式间相互转换。同样是txt文件,Windows是怎样识别编码方式的呢?
我很早前就发现Unicode、Unicode big endian和UTF-8编码的txt文件的开头会多出几个字节,分别是FF、FE(Unicode),FE、FF(Unicode big endian),EF、BB、BF(UTF-8)。但这些标记是基于什么标准呢?
问题二:
最近在网上看到一个ConvertUTF.c,实现了UTF-32、UTF-16和UTF-8这三种编码方式的相互转换。对于Unicode(UCS2)、GBK、UTF-8这些编码方式,我原来就了解。但这个程序让我有些糊涂,想不起来UTF-16和UCS2有什么关系。
查了查相关资料,总算将这些问题弄清楚了,顺带也了解了一些Unicode的细节。写成一篇文章,送给有过类似疑问的朋友。本文在写作时尽量做到通俗易懂,但要求读者知道什么是字节,什么是十六进制。
转载自:http://blog.csdn.net/fmddlmyy/archive/2005/05/04/372148.aspx
这是一篇程序员写给程序员的趣味读物。所谓趣味是指可以比较轻松地了解一些原来不清楚的概念,增进知识,类似于打RPG游戏的升级。整理这篇文章的动机是两个问题:
问题一:
使用Windows记事本的“另存为”,可以在GBK、Unicode、Unicode big endian和UTF-8这几种编码方式间相互转换。同样是txt文件,Windows是怎样识别编码方式的呢?
我很早前就发现Unicode、Unicode big endian和UTF-8编码的txt文件的开头会多出几个字节,分别是FF、FE(Unicode),FE、FF(Unicode big endian),EF、BB、BF(UTF-8)。但这些标记是基于什么标准呢?
问题二:
最近在网上看到一个ConvertUTF.c,实现了UTF-32、UTF-16和UTF-8这三种编码方式的相互转换。对于Unicode(UCS2)、GBK、UTF-8这些编码方式,我原来就了解。但这个程序让我有些糊涂,想不起来UTF-16和UCS2有什么关系。
查了查相关资料,总算将这些问题弄清楚了,顺带也了解了一些Unicode的细节。写成一篇文章,送给有过类似疑问的朋友。本文在写作时尽量做到通俗易懂,但要求读者知道什么是字节,什么是十六进制。



下载文件 






