Welcome![Sign In][Sign Up]
Location:
Search - Delphi showMessage

Search list

[EditBoxEdit_showmessage

Description: delphi编的一个带信息提示的编辑框控件,挺好用的-delphi made a message with the edit box control, very good use
Platform: | Size: 8192 | Author: hanyi | Hits:

[Delphi VCLmateydbChat

Description: Delphi使用Indy写的简单聊天实例代码,分服务端和消息发送端,代码还有些问题,主要出在引用PublicUn模块,如果不想用的话,可把此模块引用删除,然后用showmessage 代替InformationDlg和ErrorDlg,再把tit去掉即可编译运行。其实本代码重点不是PublicUn,而是Indy的使用,希望朋友们认真参考一下。-Delphi use Indy write the simple chat examples of code, sub-server and message sending side code also some problems, mainly out in reference PublicUn module, if do not want to use, then, this module references deleted, then the the ShowMessage place of InformationDlg and ErrorDlg tit can be removed and then compile and run. In fact, the focus of this code is not PublicUn, but the use of Indy, I hope you will give serious consideration to.
Platform: | Size: 56320 | Author: 小波 | Hits:

[Delphi VCLmultiwindows

Description: delphi多窗口小程序,附带showmessage,以及inputbox的用法。新手自写,希望有用。-Delphi window small programs, more incidental showmessage, as well as the use of the inputbox. Novice since writing, in the hope that useful.
Platform: | Size: 2379776 | Author: 朱润茂 | Hits:

[Delphi VCLMomory Exec

Description: 在内存中直接运行EXE类型的资源文件,delphi多窗口小程序,附带showmessage,以及inputbox的用法。新手自写,希望有用。(Run EXE type resource files directly in memory,Delphi window small programs, more incidental showmessage, as well as the use of the inputbox. Novice since writing, in the hope that useful.)
Platform: | Size: 556032 | Author: 刘小刘 | Hits:

[Other正则表达式控件

Description: delphi正则表达式控件 安装方法(我使用的delphi版本是 delphi2007): 1、先把解压的 TPerlRegEx 文件夹放在 Delphi 的根目录下的 Imports 目录中。 2、目前最新 For Win32 的版本是可以在 Delphi7,Delphi 2006,Delphi 2007,Delphi 2009 下使用。 我用的是2007,于是就打开了PerlRegExD2007.dpk ,在 Project Manager 窗口中的 PerlRegExD2007.bpl 上点击右键,执行 Install。这时 在 Tool Palette 的列表中已经有了 TPerlRegEx,在 JGsoft 组。 3、Tools -> Options -> Environment Options -> Delphi Options -> Library-Win32 -> Library path -> 添加路径:$(BDS)\Imports\TPerlRegEx (注:就是刚才放置的路径)。 4、打开delphi根目录下 Imports\TPerlRegEx\pcre ,把 pcre3.dll 文件复制到 C:\WINDOWS\system32 文件夹下,这个文件夹里是windows系统存放 dll 文 件的大本营。如果不复制pcre3.dll,在应用 TPerlRegEx 正则的时候,系统提示出错。 5、用delphi打开 Imports\TPerlRegEx 目录下的 pcre.pas 文件,找到 //{$DEFINE PCRE_STATICLINK} ,把之前的注释 // 删除;找 到 {$DEFINE PCRE_LINKDLL} ,把它注释掉,即改为 //{$DEFINE PCRE_LINKDLL} 。注意:这点非常重要,如果不这样改的话,在软件开发完成后,分 发到其他电脑上的时候,软件就会提示“缺少pcre3.dll错误”。这样修改的原因,是把正则直接封包到 exe 文件里,而不需要链接 pcre3.dll 了;封包进 exe,付 出的代价是软件增大了 100KB 左右的大小,当然比起必须携带 pcre3.dll来说,这是有意义的付出。 6、可以使用了! 直接 uses PerlRegEx 或从 Tool Palette 添加都可以。 TPerlRegEx 安装设置完成后,就可以舒心地使用了,一些简单的使用方法如下: //查找是否存在 var reg: TPerlRegEx; begin reg := TPerlRegEx.Create(nil); reg.Subject := 'CodeGear Delphi 2007 for Win32'; reg.RegEx := '\d'; if reg.Match then ShowMessage('找到了') else ShowMessage('没找到'); FreeAndNil(reg); end;
Platform: | Size: 211229 | Author: clubmanjim | Hits:

CodeBus www.codebus.net