Location:
Search - vb unicode
Search list
Description: 一个详细的汉字编码介绍以及判断汉字编码的程序代码。不知道有没有人曾经为汉字的编码问题头疼不已?这篇文档讲述了GB2312-80、GBK、Unicode编码、Big5编码的规律,并给出了判断一个汉字为GBK和Big5码的VB代码程序。-a detailed description and a Chinese character coding judgment Chinese character coding procedure code. Do not know whether any of them had the Chinese character coding for the worse with the problem? This document about the GB2312-80, GBK, Unicode encoding, Big5 coding rules, and gives the judge a Chinese character for GBK Big5 code and the procedures for VB code.
Platform: |
Size: 29068 |
Author: 绿风 |
Hits:
Description: msagent说明文档。机器人接口 Agent,COM,角色,语音识别,语音合成。 对Agent编程的方法主要有使用VB,VC等语言进行ActiveX调用,除此之外还有直接通过VC进行COM编程调用。在VB中调用Agent是最简单不过了,但由于VB程序本身存在诸多缺陷,很难在实际中应用。而在VC中,由于Agent内部完全采用了UNICODE编码,同时还要处理各种繁杂的COM接口,从而也存在一定的问题。AgentShell是建立在Agent和应用程序之间的一个外壳程序,通过它可将Agent复杂的COM接口封装起来,转变为简单的函数调用,很好的实现对Agent的控制。同时AgentShell也作为一个独立的程序,可处理英文自动朗读等功能,本文将详细介绍其实现原理。 (一) 原理介绍 AgentShell和Agent Server的连接是通过COM调用来实现的,对于与应用程序的通信是通过WM_COPYDATA消息来实现的, 下图表示出AgentShell与其它程序的关系: [ Agent Server ] ¦ [ COM调用 ] ¦ [ AgentShell ] ¦ [ 消息 ] ¦ [ 应用程序 ]-msagent documentation. Robot Interface Agent, COM, role, voice recognition, voice synthesis. Right Agent programming method mainly used VB, VC language called ActiveX. in addition to direct VC calls for COM programming. In VB called Agent is the most simple, but VB program itself, there are many shortcomings, very difficult to be applied in practice. The VC, as Agent completely within the UNICODE coding, Meanwhile, we need to deal with various complicated COM interface, so there are some problems. AgentShell is based on the Agent and applications between a shell, through its Agent can be complicated COM interface package, changing to a simple function call. to achieve good control of the Agent. While AgentShell also as an independent process, can be handled automatically read English and o
Platform: |
Size: 721552 |
Author: xpnt |
Hits:
Description: 因为手机短消息的发送是以PDU串的形式发送出去的,中文字符以Unicode码来表示,所以在发送中文短消息之前必须首先将中文字符转换为Unicode码,下面的函数将实现这个功能。这个函数主要应用到VB自带的一个格式转换函数:AscW()将中文转换为Unicode码-because phone short message is sent in the form of Series PDU sent, Chinese characters in Unicode code to indicate, Therefore, the Chinese short message sent before the Chinese must first be converted to Unicode character codes, the following function to achieve this function. The main function of the VB application onboard a format conversion functions : AscW () will be converted to Unicode Chinese code
Platform: |
Size: 9707 |
Author: victor |
Hits:
Description: 因为手机短消息的发送是以PDU串的形式发送出去的,中文字符以Unicode码来表示,所以在发送中文短消息之前必须首先将中文字符转换为Unicode码,下面的函数将实现这个功能。这个函数主要应用到VB自带的一个格式转换函数:ChrW()将中文转换为Unicode码。
Platform: |
Size: 7049 |
Author: 高晓斌 |
Hits:
Description: (利用GIF_LZW算法实现的)网络图片传输 技术特点 ~~~~~~~~ 一、使用TCP协议传输数据。理由:稳定性好。 二、使用字节数据流进行传输,理由: A:VB的String存在自动Unicode转换问题,影响速度; B:可以直接发送8位字节数据,不需要使用Base64编码,从而减少了编码时间。 三、使用GIF-LZW压缩算法压缩图像。理由: A:行程编码、Huffman压缩算法压缩率太低; B:JPEG压缩算法需要太多位运算,且运算量大(有专门MMX优化算法),不利于VB实现; C:GIF-LZW压缩算法压缩率较好,且我已想出VB语法下高效GIF-LZW压缩/解压算法。 四、使用“有序抖动”算法进行 色彩量化。理由:“有序抖动”处理的结果具有一定规律性,有助于LZW类算法压缩。-(using GIF_LZW algorithm) picture transmission network ~~~~~~~~ a technical features, the use of TCP to transmit data. Reason : good stability. Two, the use of byte data stream for transmission, reasons : A : VB String exist automatically Unicode conversion, the impact speed; B : can directly send eight bytes of data and do not need to use Base64 encoding, thereby reducing the coding time. 3, the use of GIF - LZW compression algorithm for image compression. Reason : A : itinerary coding, Huffman compression algorithm compression rate is too low; B : JPEG compression algorithm needs much-bit computing, and large amount of computation (with MMX specialized optimization algorithm), is not conducive to VB; C : GIF - LZW compression algorithm compression ratio better, and I have come up with un
Platform: |
Size: 62518 |
Author: 房 |
Hits:
Description: (利用GIF_LZW算法实现的)网络图片传输 技术特点 ~~~~~~~~ 一、使用TCP协议传输数据。理由:稳定性好。 二、使用字节数据流进行传输,理由: A:VB的String存在自动Unicode转换问题,影响速度; B:可以直接发送8位字节数据,不需要使用Base64编码,从而减少了编码时间。 三、使用GIF-LZW压缩算法压缩图像。理由: A:行程编码、Huffman压缩算法压缩率太低; B:JPEG压缩算法需要太多位运算,且运算量大(有专门MMX优化算法),不利于VB实现; C:GIF-LZW压缩算法压缩率较好,且我已想出VB语法下高效GIF-LZW压缩/解压算法。 四、使用“有序抖动”算法进行 色彩量化。理由:“有序抖动”处理的结果具有一定规律性,有助于LZW类算法压缩。-(using GIF_LZW algorithm) picture transmission network ~~~~~~~~ a technical features, the use of TCP to transmit data. Reason : good stability. Two, the use of byte data stream for transmission, reasons : A : VB String exist automatically Unicode conversion, the impact speed; B : can directly send eight bytes of data and do not need to use Base64 encoding, thereby reducing the coding time. 3, the use of GIF- LZW compression algorithm for image compression. Reason : A : itinerary coding, Huffman compression algorithm compression rate is too low; B : JPEG compression algorithm needs much-bit computing, and large amount of computation (with MMX specialized optimization algorithm), is not conducive to VB; C : GIF- LZW compression algorithm compression ratio better, and I have come up with un
Platform: |
Size: 62464 |
Author: 房 |
Hits:
Description: 非常实用的放大镜,浮动窗体,可以放大屏幕到任何倍数.-very useful magnifying glass, floating windows, can enlarge the screen to any multiples.
Platform: |
Size: 2048 |
Author: 人民币 |
Hits:
Description: 一个详细的汉字编码介绍以及判断汉字编码的程序代码。不知道有没有人曾经为汉字的编码问题头疼不已?这篇文档讲述了GB2312-80、GBK、Unicode编码、Big5编码的规律,并给出了判断一个汉字为GBK和Big5码的VB代码程序。-a detailed description and a Chinese character coding judgment Chinese character coding procedure code. Do not know whether any of them had the Chinese character coding for the worse with the problem? This document about the GB2312-80, GBK, Unicode encoding, Big5 coding rules, and gives the judge a Chinese character for GBK Big5 code and the procedures for VB code.
Platform: |
Size: 28672 |
Author: 绿风 |
Hits:
Description: msagent说明文档。机器人接口 Agent,COM,角色,语音识别,语音合成。 对Agent编程的方法主要有使用VB,VC等语言进行ActiveX调用,除此之外还有直接通过VC进行COM编程调用。在VB中调用Agent是最简单不过了,但由于VB程序本身存在诸多缺陷,很难在实际中应用。而在VC中,由于Agent内部完全采用了UNICODE编码,同时还要处理各种繁杂的COM接口,从而也存在一定的问题。AgentShell是建立在Agent和应用程序之间的一个外壳程序,通过它可将Agent复杂的COM接口封装起来,转变为简单的函数调用,很好的实现对Agent的控制。同时AgentShell也作为一个独立的程序,可处理英文自动朗读等功能,本文将详细介绍其实现原理。 (一) 原理介绍 AgentShell和Agent Server的连接是通过COM调用来实现的,对于与应用程序的通信是通过WM_COPYDATA消息来实现的, 下图表示出AgentShell与其它程序的关系: [ Agent Server ] ¦ [ COM调用 ] ¦ [ AgentShell ] ¦ [ 消息 ] ¦ [ 应用程序 ]-msagent documentation. Robot Interface Agent, COM, role, voice recognition, voice synthesis. Right Agent programming method mainly used VB, VC language called ActiveX. in addition to direct VC calls for COM programming. In VB called Agent is the most simple, but VB program itself, there are many shortcomings, very difficult to be applied in practice. The VC, as Agent completely within the UNICODE coding, Meanwhile, we need to deal with various complicated COM interface, so there are some problems. AgentShell is based on the Agent and applications between a shell, through its Agent can be complicated COM interface package, changing to a simple function call. to achieve good control of the Agent. While AgentShell also as an independent process, can be handled automatically read English and o
Platform: |
Size: 720896 |
Author: xpnt |
Hits:
Description: 因为手机短消息的发送是以PDU串的形式发送出去的,中文字符以Unicode码来表示,所以在发送中文短消息之前必须首先将中文字符转换为Unicode码,下面的函数将实现这个功能。这个函数主要应用到VB自带的一个格式转换函数:AscW()将中文转换为Unicode码-because phone short message is sent in the form of Series PDU sent, Chinese characters in Unicode code to indicate, Therefore, the Chinese short message sent before the Chinese must first be converted to Unicode character codes, the following function to achieve this function. The main function of the VB application onboard a format conversion functions : AscW () will be converted to Unicode Chinese code
Platform: |
Size: 9216 |
Author: victor |
Hits:
Description: 一个实现将unicod转换成AscII编码的小程序,运用vc编程-unicod achieve a conversion of small AscII coding procedures, the use vc Programming
Platform: |
Size: 1024 |
Author: 黄雷 |
Hits:
Description: vb下发送短信的源码,以pdu方式发送短信,我用的是华为的gtm900gprs模块-under vb source of this message to pdu sending SMS, I use the module Huawei gtm900gprs
Platform: |
Size: 882688 |
Author: 马弘历 |
Hits:
Description: 因为手机短消息的发送是以PDU串的形式发送出去的,中文字符以Unicode码来表示,所以在发送中文短消息之前必须首先将中文字符转换为Unicode码,下面的函数将实现这个功能。这个函数主要应用到VB自带的一个格式转换函数:ChrW()将中文转换为Unicode码。-Because the mobile phone short message sending PDU is sent the form of strings, and Chinese characters to Unicode code expressed in the Chinese short message sent before the Chinese characters must first be converted to Unicode code, the following function to achieve this function. The main function is applied to a VB own format conversion function: ChrW () will be converted to Unicode Chinese code.
Platform: |
Size: 7168 |
Author: 高晓斌 |
Hits:
Description: 包含了一個完整的讀取圖形程式庫的源碼,可以並含詳細的英文註解,以及一個用該程式庫設計的一個圖像處理的軟體,內含多種範例及給不同語言用的lib還有VB的ocx(C++ Builder 6、WINCE for VS 2005、VB 6、Linux - KDevelop2)-cximage600_full : full source code with JPG, PNG, TIF, ZLIB, Jbig, JasPer, LibMNG,
LibDCR libraries, documentation and demo for Microsoft VisualStudio6 1.52 Mb
cximage600_lite : full source code with documentation and small demo for Microsoft Visual Studio 6 259 Kb
cximage600_demo : compiled demo.exe for Windows (runs also on Linux, using Wine) 602 Kb
cximage600_ce : full source code with documentation and small demo for PocketPC2003
(Microsoft Visual Studio 2005 solution) 1.37 Mb
cximage600_bc6 : full source code with JPG, PNG, TIF, ZLIB, Jbig, JasPer libraries,
documentation and demo for Borland C++ Builder 6 980 Kb
Old version:
cximage599c_full_unicode : minor cximage599c_full update, patched for unicode and for
Microsoft Visual Studio 2005 1.15 Mb
cximage599c_tar : full source code with JPG, PNG, TIF, ZLIB libraries and console demo for
Linux- KDevelop2 1.78 Mb
cximage599c_ocx : CxImage OCX source code, with JPG, PNG, TIF, ZLIB, Jbig, Ja
Platform: |
Size: 13593600 |
Author: 黃亮車 |
Hits:
Description: 在VB中把中文转化成Unicode码
首先介绍一下VB中的两个函数:ChrW()和AscW().对于Chr()和Asc()函数大家一定很熟悉,对于ChrW()和AscW()可能会比较生疏一点. ChrW 函数返回包含 Unicode 的 String,若在不支持 Unicode 的平台上,则其功能与 Chr 函数相同 AscW 函数返回 Unicode 字符代码,若平台不支持 Unicode,则与 Asc 函数功能相同。-Put in the VB in English translated into Unicode first introduce some VB code in two functions: ChrW () and AscW (). For the Chr () and Asc () function must be very familiar with the U.S., for ChrW () and AscW () possible A LITTLE more unfamiliar. ChrW contains Unicode function return the String, if the platform does not support Unicode on, its function and Chr function the same AscW function return Unicode character code, if the platform does not support Unicode, with the Asc function of the same function.
Platform: |
Size: 6144 |
Author: lidan |
Hits:
Description: 本人用vb编写了一个生成usb字符串描述符数组的unicode转换器。提供给大家学习学习。-I use vb prepared a generation usb string descriptor array unicode converter. Available to all learn from him.
Platform: |
Size: 2537472 |
Author: 陈叶飞 |
Hits:
Description: Unicode编码转换的VB源代码,适合新手-Unicode encoding conversion of the VB source code, suitable for beginners
Platform: |
Size: 5120 |
Author: liue |
Hits:
Description: Unicode与GB2312相互转换的VB源码
Unicode转中文-Unicode and the GB2312 mutual conversion of the VB source code
Unicode switch to Chinese
Platform: |
Size: 227328 |
Author: 364020914 |
Hits:
Description: 各类Unicode控件,解决vb不支持Unicode的问题-All kinds of Unicode control, to solve the problem of Unicode does not support VB
Platform: |
Size: 18536448 |
Author: najagay |
Hits:
Description: VB版的Unicode控件,包含按钮控件、标签控件、菜单控件、文本框控件(VB Unicode version usercontrols, including unilabel,unicommand,unimenu,unitextbox)
Platform: |
Size: 148480 |
Author: yttb |
Hits: