论坛


2008年11月26日 星期三

ASyncSocket 1.0.3

CodeGear| CodeGear-CodeCentral Delphi |23:54:51

ASyncSocket is Delphi's asynchronous socket component based on Winsock2Common property of this is as follows : * Winsock2 based * IPv6 Support * Asynchronous TCP Server and Client * UnicodeString support (Delphi 2009 or abobe) * Tex...

Memories of Turbo Pascal version 1.0 - Gerold Martens, Australia

David I| Sip from the Firehose |22:59:14

From: Gerold Martens Sent: Thursday, February 17, 2005 9:59 PM Subject: Pascal/Delphi Story [ David I. note - this story dates back to an email I received in 2005 as part of the Delphi 10 year celebration. It also has memories of Turbo Pascal vers...

教你如何用Delphi生成GBK码表

幸福苹果| 幸福苹果-delphi |22:15:00

阅读全文类别:delphi编程 查看评论

学点 C 语言(11): goto 语句

万一| 万一的 Delphi 博客 |21:59:00

例1:#include <stdio.h> #include <string.h> int main() { char str[256]; scanf("%s", str); if (strlen(str)10) { goto Label1; } else { goto Label2; } Label1: printf("\n输入内容没有超过 10 个?..

Partner DVD ISO for RAD Studio 2009 and Delphi Prism 2009

CodeGear| CodeGear-CodeCentral Delphi |18:25:14

This ISO includes third party software for use with RAD Studio 2009 and Delphi Prism 2009. It is the ISO for the Partner DVD (Disk 2 in the Delphi Prism media kit or Disk 3 in the RAD Studio 2009 package).Browsable versions of the files are also a...

学点 C 语言(10): switch 语句

万一| 万一的 Delphi 博客 |18:10:00

1. 常规:#include <stdio.h> int main() { int i; for (i = 0; i10; i++) { switch (i) { case 1: printf("%d\n", i); break; case 3: printf("%d\n", i); ...

Extras directory files for Delphi 2009 and C++Builder 2009

CodeGear| CodeGear-CodeCentral Delphi |18:01:16

This .zip contains files from the /extras directory on the Delphi 2009 and C++Builder 2009 DVD that aren't included in the ESD download version of the product. Files include: - BDE merge modules in English, French, German and Japanese - source fi...

两个结构体可以直接赋值吗? - 回复 "JohnsonAnother" 的问题

万一| 万一的 Delphi 博客 |15:46:00

问题来源:http://www.cnblogs.com/del/archive/2008/11/26/1031787.html#1382525两个结构体可以直接赋值!, 测试如下:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TFo...

Delphi 2009 Handbook PDF eBook

CodeGear| CodeGear-CodeCentral Delphi |15:13:06

Delphi 2009 HandbookThe guide to what's new in Delphi 2009From the best-selling author of the Mastering Delphi seriesThe Delphi 2009 Handbook covers all the new featrues of Delphi 2009, from Unicode support to generics, from anonymous methods to o...

学点 C 语言(9): if 语句

万一| 万一的 Delphi 博客 |13:04:00

1. 常规:#include <stdio.h> int main() { int i; for (i = 0; i10; i++) { if (i%2 == 0) printf("%d 是偶数\n", i); if (i%2 != 0) printf("%d 是奇数\n", i); } getchar(); return 0; }#include <stdio.h> int main...

学点 C 语言(8): while 与 do while 循环

万一| 万一的 Delphi 博客 |12:11:00

1. while 循环:#include <stdio.h> int main() { int i=0; while (i10) { i++; printf("%d\n", i); } getchar(); return 0; }2. do while 循环:#include <stdio.h> int main() { int i=0; do { i+...

Unicode tip #5 - FillChar and Fill/ZeroMemory

Bob Swart| Dr.Bob’s Delphi Notes |11:47:36

The FillChar routine fills a string or buffer with bytes, which means that we need to multiply the length of the string with the size of the string elements in order to fill the complete size of the string.

学点 C 语言(7): for 循环

万一| 万一的 Delphi 博客 |10:29:00

1. for 循环的基本形式:#include <stdio.h> int main() { int i; for (i = 0; i10; i++) { printf("%d\n", i); } getchar(); return 0; }2. 步长:#include <stdio.h> int main() { int i; for (i = 0; i10; i += 2) { ...

TMS.Component.Pack.v4.9.0.1.for.Delphi.BCB.Full.Source (update Nov 25, 2008)

flypig| flypig-delphi |07:20:29

Code: TMS.Component.Pack.v4.9.0.1.for.Delphi.BCB.Full.Source diSQLite3_2.00_for_d7_d11_d2009 http://www.mediafire.com/download.php?nzt4yy3dyzy ? Fast Report Professional Edition 4.7.22 от 20.11.2008 http://rapidshare.com/files/167167507/FR4_7_22...

Memories of Turbo Pascal version 1.0 - several blog posts

David I| Sip from the Firehose |06:50:15

Several different community members and industry luminaries have posted blog articles with memories of Turbo Pascal version 1.0. Here are just a few of the blog posts with the person, link to the blog, and an excerpt from their posts. Huw Collingb...