摘要: // tabs = 2// -----------------------------------------------------------------------------------------------//// MD5 Message-Digest for Delphi 4//// Delphi 4 Unit implementing the// RSA Data Security, Inc. MD5 Message-Digest Algorithm//// Implementation of Ronald L. Rivest's RFC 1321//// Copyright 阅读全文
posted @ 2010-02-06 02:14 Max Woods 阅读(2047) 评论(0) 推荐(0) 编辑
摘要: unit Des;interfaceuses SysUtils;type TKeyByte = array[0..5] of Byte; TDesMode = (dmEncry, dmDecry); function DesEncryStr(Str, Key: String): String; function DesDecryStr(Str, Key: String): String; function DesEncryStrHex(Str, Key: String): String; function DesDecryStrHex(StrHex, Key: String): String 阅读全文
posted @ 2010-02-06 02:13 Max Woods 阅读(969) 评论(0) 推荐(0) 编辑
摘要: {功能描述:T40S作者:天地狂虫日期:2007年11月23日}unit OMRAPI;interfaceuses SysUtils,Windows;type //光标阅读机通讯端口类型 TOmrPortType=(OPTCOM,OPTUSB); //光标阅读机接口函数声明 TOmrOpenUSB=function():Integer;stdcall; TOmrOpenComm=function(... 阅读全文
posted @ 2010-02-06 01:57 Max Woods 阅读(1775) 评论(0) 推荐(0) 编辑
摘要: "B/""G 03 02 02 05/""D 01 0123456789/""D 02 ABCD/""D 03 ABCDEFGHIJK/""T A 048 19/""L 052 23 40/""M 001 01 23/""M 041 01 23/""F 052 13 L S 01 09 D/""F 052 01 L S 03 01 D/""F 012 05 L S 01 05 D/""F 038 ... 阅读全文
posted @ 2010-02-06 01:55 Max Woods 阅读(656) 评论(0) 推荐(0) 编辑
摘要: 不能更改组件或其子组件的位置,因为该组件已经存储在其他位置或者该组件依赖的某个文件已经存储在其他位置。以下程序将导致发生垂直集成:Microsoft Visual Studio Tools for Applications 2.0 - ENU Microsoft Visual Studio Tools for Applications 2.0 Language Pack - CHS Microsoft Visual Studio 2008 Shell (integrated mode) - CHS 若要更改文件路径,必须卸载上面列出的程序,然后将它们重新安装到希望在其中存储与 Visual S 阅读全文
posted @ 2010-02-06 01:50 Max Woods 阅读(4586) 评论(3) 推荐(1) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Data;using System.Data.SqlClient;using System.IO;namespace PhotoExport{ class Program { static void Main(string[] args) { B... 阅读全文
posted @ 2010-02-06 01:41 Max Woods 阅读(303) 评论(0) 推荐(0) 编辑