相关分类: Java技术 C/C++ VB delphi
  • // I have a comment ----Delphi 研发人员谈注释 (翻

    摘要: Robert Kozak, 来自Delphi RD, 讨论关于正确的代码编写方法. // 我有一个注释 by Robert Kozak (Delphi RD) 两个月以前,我有机会去回顾一下我第一次为Delphi工作的时候所编写的一些代码。我实在是不愿意承认那是我写的-因为他们实在是太糟糕了。这当然是一段令...

    2008-04-09 04:31:33

  • 用Delphi设计代理服务器[正确文章]

    用Delphi设计自己的代理服务器 笔者在编写一个上网计费软件时,涉及到如何对局域网中各工作站上网计费问题。一般来讲,这些工作站通过代理服务器上网,而采用现成的代理服务器软件时,由于代理服务器软件是封闭的系统,很难编写程序获取实时的上网计时信息。因此,考虑...

    2008-04-09 04:31:23

  • 读一读Scktsrvr.exe的源程序

    读一读Scktsrvr.exe的源程序 使用DELPHI做多层开发的朋友们都应该对Scktsrvr.exe这个程序不陌生的, Borland公司在DELPHI中给出了它的源代码。 这是一个900来行的程序,程序不算长, 现在我只选其中部分仔细读一读。 走的线路大致是,从服务器接到客户端连接,处理客户...

    2008-04-09 04:31:22

  • 使用DLL文件中封装的窗口

    使用DLL文件中封装的窗口 徐长友 文章摘要: 编写软件时常常使用到DLL文件,本文就使用DLL文件中封装的窗口来说说Delphi中在DLL如何封装窗口,如何调用DLL中封装的窗口,及MDI-Child在DLL中载入并使用 一、在DLL中封装窗口 打开Delphi新建一个DLL工程,保存为usedll,...

    2008-04-09 04:31:22

  • Object Pascal Style Guide

    Object Pascal Style Guide - by Charles Calvert Abstract: This article documents a standard style for formatting Delphi code. It is based on the conventions developed by the Delphi team. Object Pascal Style Guide This article documents a standard sty...

    2008-04-09 04:31:21

  • 怎样修改windows里的开始按钮的位图?

    / 修改 var Form1: TForm1; StartButton: hWnd; OldBitmap: THandle; NewImage: TPicture; / 将代码放入FormCreate事件 procedure TForm1.FormCreate(Sender: TObject); begin NewImage := TPicture.create; NewImage.LoadFromFile(''''C:WindowsCircles.BMP''''); S...

    2008-04-09 04:31:20

  • 怎样知道我的程序是否运行在DELPHI?

    function IsAppRunningInDelphi : boolean; var hKernelDll : THANDLE; proc_IsDebuggerPresent : TProcIsDebuggerPresent; useFindWindow : boolean; proc : FARPROC; begin useFindWindow := true; if (Win32Platform = VER_PLATFORM_WIN32_NT) then begin // WinNt...

    2008-04-09 04:31:20

  • 杀死一个正在运行的程序

    procedure KillProgram(Classname : string; WindowTitle : string); const PROCESS_TERMINATE = $0001; var ProcessHandle : THandle; ProcessID: Integer; TheWindow : HWND; begin TheWindow := FindWindow(Classname, WindowTitle); GetWindowThreadProcessID(TheW...

    2008-04-09 04:31:19

  • 怎样知道你的程序是运行在安全模式呢?

    Use Windows API GetSystemMetrics with SM_CLEANBOOT parameter, this specifies how the system was started, in your projects code use: program Project1; uses Forms, Windows, Dialogs, Unit1 in ''''Unit1.pas'''' {Form1}; {$R *.RES} begin Application.Init...

    2008-04-09 04:31:19

  • 在Delphi中调用Flash

    -----------------------文 老猫 ----本文参考了Delphi世界之大富翁论坛上阿蒙和浦青锋两位大侠的 意见。 ----原来我并不打算把这种问题放在网上,我以为大家都会知道。后 来好友流云建议说,她们班好多人都学Flash,很想知道如何在Delphi 中调用Flash。我就讲了一下,...

    2008-04-09 04:31:18

2