摘要:
对象 功能 ADBC Acrobat Database Connectivity(ADBC)是一个跨平台的外挂程序。可以在Adobe PDF中以Acrobat JavaScript连接同时以SQL语法控管资料库。虽然ADBC可以对资料库进行存取的动作,但是ADBC必须透过系统的ODBC、JDBC的协助才能连结资料库。所以,ADBC仅适合对单机的资料库进行存取,而网路资料库则由...
阅读全文
posted @ 2007-11-22 21:00
万一
阅读(4695)
推荐(0)
编辑
摘要:
absolute //指令(变量) abstract //指令(方法) and //运算符(布尔) array //类型 as //运算符(RTTI) asm //语句 assembler //向后兼容(汇编) at //语句(异常处理) automated //访问类别符(类) begin //块标记 case //语句 cdecl //函数调用协定 class //类型 c...
阅读全文
posted @ 2007-11-22 17:14
万一
阅读(10748)
推荐(0)
编辑
摘要:
function GetPyChar(const HZ: AnsiString): string; const HZCode: array[0..25, 0..1] of Integer = ((1601, 1636), (1637, 1832), (1833, 2077), (2078, 2273), (2274, 2301), (2302, 2432), (2433, 2593)...
阅读全文
posted @ 2007-11-22 16:53
万一
阅读(5238)
推荐(0)
编辑
摘要:
program Project1; {$APPTYPE CONSOLE} begin Writeln(' | | '); Writeln(' x| | '); Writeln('---|---|---'); Writeln(' | 0 |x '); Writeln('---|---|---'); Writeln(' | 0 | ');...
阅读全文
posted @ 2007-11-22 16:21
万一
阅读(6343)
推荐(0)
编辑
摘要:
function IntToBin(Value: LongInt; Size: Integer): String; var i: Integer; begin Result:=''; for i:=Size-1 downto 0 do begin if Value and (1 shl i)0 then Result:=Result+'1' else ...
阅读全文
posted @ 2007-11-22 16:18
万一
阅读(10564)
推荐(0)
编辑
摘要:
function RGB2TColor(const R, G, B: Byte): Integer; begin // convert hexa-decimal values to RGB Result := R + G shl 8 + B shl 16; end; procedure TColor2RGB(const Color: TColor; var R, G, B: Byte...
阅读全文
posted @ 2007-11-22 15:38
万一
阅读(8892)
推荐(1)
编辑
摘要:
运算符包括: @ not ^ * / div mod and shl shr as + - or xor = > = in is 其中 @ not ^ 是一元运算符; + - 有时是一元,有时是二元; 其他都是二元运算符. 一元运算符在运算数的前面, ^ 例外,也可以在后面,如: P^; 二元运算符在运算数中间. 运算符的行为随运算数的类型...
阅读全文
posted @ 2007-11-22 15:07
万一
阅读(4905)
推荐(0)
编辑
摘要:
Object Pascal 使用ASCII 字符集,包括A-Z、a-z、0-9、以及其它标准字符,字母是大小写无关. 单字符特殊符号: # $ & ' ( ) * + , - . / : ; @ [ ] ^ { } 组合字符特殊符号: (* *) (. .) .. // := = 其中:‘[]’相当于‘(..)’; ‘(**)’相当于...
阅读全文
posted @ 2007-11-22 15:02
万一
阅读(5978)
推荐(1)
编辑
摘要:
{...} (*...*) //... 相同的注释不能嵌套. 若 $ 符紧跟在 { 或 (* 之后,则注释是编译器指示字。例如 {$WARNINGS OFF} 就是告诉编译器别产生警告信息。
阅读全文
posted @ 2007-11-22 14:56
万一
阅读(5571)
推荐(0)
编辑