引言: 先引入类型库(Project|Import Type Library)adsiis.dll、iisext.dll和activeds.tlb新建一个单元,声明。
摘要:delphi中的字符串——摘自网络一:各种字符串 字符串是object pascal所有数据类型中最有用的类型。许多函数以字符串为传递参数。由于在delphi中字符串的定义和使用有各种方式,包括pascal中典型的字符串(string),delphi支持的长字符串(ansistring),类似于c语言的字符数组(array of char),指向字符的指针(pchar)......
摘要:参考 《让fastreport3.x支持中文pdf的输出》一文,确实可以支持中文。但是发现两个问题:1、只能在adobe reader下打开,在foxit reader下空白。2、用adobe acrobat或者adobe reader打开时提示rebuild,关闭时提示save研究了一下fastreport3.14和3.07的源代码,发现关于字体这部分重新调整了。在3.07下,每个type0的字......
Delphi中用Adsi创建IIS虚拟目录先引入类型库(project|import type library)adsiis.dll.iisext.dll与activeds.tlb新建一个单元,声明.
unit activeds; 【程序编程相关:
[Delphi]根据 高斯正态分布随机函】 【推荐阅读:
ORLAND.DATA.ORACLE不匹】
【扩展信息:
DELPHI基础开发技巧
】
interface
function adsgetobject(const pathname: widestring; const guid:
tguid; out i: iunknown): hresult; stdcall;
implementation
function adsgetobject; external activeds.dll name adsgetobject;
end.
方法一(参照c++).
var
i: iadscontainer;
ads: iads;
begin
if adsgetobject(iis://localhost/w3svc, iid_iadscontainer, iunknown(i)) = s_ok then
begin
ads := iads(i.getobject(iiswebserver, 1));
showmessage(ads.adspath);
if ads.queryinterface(iid_iadscontainer, i) = s_ok then
begin
...
下一页 摘要:使用interbase是因其体积小巧,运行效率高。下面以inno setup5.0的安装脚本为例介绍一下最小化打包interbase的方法。本安装脚本仅适合win2000及以上操作系统,不兼容win9x。本脚本在xp下安装通过,win2000应该也一样。如果您有更好的安装脚本或别的意见建议,欢迎与我联系 ufo2003@126.com[files];以下为客户端所需文件,计5个,大小为875kso......