您现在的位置:首页 >> 基础算法 >> window基础 >> 列表
window基础
  • Delphi中Stream到Variant的转化函数 2011-09-03 点击:723 评论:0
  • procedure VariantToStream (const v : OleVariant; Stream : TMemoryStream); varp : pointer; ...
  • Delphi计算汉字笔划的函数 2011-09-03 点击:637 评论:0
  • 函数调用:procedure TForm1.Button1Click(Sender: TObject);begin ShowMessage(IntToStr(GetBiHua('好...
  • Delphi将输入汉字自动产生拼音简码 2011-09-03 点击:837 评论:0
  • function getPY(hzchar:string):char;begin case word(hzchar[1])shl 8+word(hzchar[2]) of $B0a...
  • Delphi中实现全角转半角 2011-09-03 点击:533 评论:0
  • 全角字符的第一个字节总是被置为163,而第二个字节则是相同半角字符码加上128(不包括空格)。如半角a为65,则全角a则是163(第一个字节)、 193 (第二个字节, 128 +...
  • Delphi函数Shl与Shr介绍说明 2011-09-03 点击:782 评论:0
  • 格式:操作数 Shl/Shr 移动位数说明:操作数与返回值都是整数例子:16(10) = 10000(2)16(10) Shr 1 = 10000(2) Shr 1 = 1000(...
  • 声明const的Integer类型的多维数组时的赋值 2011-09-03 点击:583 评论:0
  • type TCube4 = array[0..1, 0..1, 0..1, 0..1] of Integer; TCube3 = array[0..1, 0..1, 0..1] o...
  • Delphi写的验证身份证号有效性函数 2011-09-03 点击:1021 评论:0
  • function ValidatePID(const APID: string): string; {内部函数,取身份证号校验位,最后一位,对18位有效} function Get...
  • Delphi中GetTickCount函数原型及其用途 2011-09-03 点击:851 评论:0
  • 【说明】 用于获取自windows启动以来经历的时间长度(毫秒)【返回值】 Long,以毫秒为单位的windows运行时间通常用来计算某个操作所使用的时间: Start:=GetT...
  • Delphi中的Format函数详解 2011-09-03 点击:996 评论:0
  • 首先看它的声明:function Format(const Format: string; const Args: array of const): string; overloa...
  • Delphi中的FormatDateTime函数用法 2011-09-03 点击:1257 评论:0
  • 他的声明为: function FormatDateTime(const Format: string; DateTime: TDateTime): string; overloa...
  • 盒子文章(www.2ccc.com) © 2024 版权所有 All Rights Reserved.
  • 沪ICP备05001939号