導航:首頁 > 文件教程 > delphi2010幫助文件

delphi2010幫助文件

發布時間:2024-09-17 21:13:51

Ⅰ 在delphi中如何選擇文件

usesFileCtrl;

functionSelectDirectory(varDirectory:string;//英文對話框
Options:TSelectDirOpts;HelpCtx:Longint):Boolean;overload;
functionSelectDirectory(constCaption:string;//中文對話框
constRoot:WideString;
varDirectory:string):Boolean;overload;

//以下是Delphi幫助的Demo:

usesFileCtrl;

const
SELDIRHELP=1000;
procereTForm1.Button1Click(Sender:TObject);
var
Dir:string;
begin
Dir:='C:/MYDIR';//預設為C:/MYDIR
ifSelectDirectory(Dir,[sdAllowCreate,sdPerformCreate,sdPrompt],SELDIRHELP)then
Label1.Caption:=Dir;//Dir返回選擇的文件夾
end;

Ⅱ 在Delphi中,怎麼查找字元串

Delphi提供的字元串函數里有一個Pos函數,它的定義是:

function Pos(Substr: string; S: string): Integer;

它的作用是在字元串S中查找字元串Substr,返回值是Substr在S中第一次出現的位置,如果沒有找到,返回值為0。

使用pos函數來查找字元第一次出現的位置

var
str1:string;
i,j:integer;
begin
str1:='dsf4654f6<ds>ad';
j:=pos('<',str1);//在字元串str1中查找"<"
ifj<>0then//得到的j是字元串中出現的位置,是整型
showmessage('<'+'在第'+inttostr(j)+'個位置');//第十個位置
end;

閱讀全文

與delphi2010幫助文件相關的資料

熱點內容
如何設置ipad下載密碼 瀏覽:458
ae信號干擾教程 瀏覽:548
電腦之前刪掉的文件怎麼找 瀏覽:805
索尼z1刷什麼系統升級 瀏覽:466
自創字體怎麼編程序 瀏覽:381
成都的蘋果售後服務電話號碼 瀏覽:698
文件放筆記本哪個盤 瀏覽:745
starbound星球文件格式 瀏覽:137
javathis和super 瀏覽:782
iphone5左上角翹屏 瀏覽:863
自製音樂節奏燈教程 瀏覽:963
java獲取jar文件路徑 瀏覽:227
手機test文件可刪除么 瀏覽:719
升win10卡在34 瀏覽:962
sfc文件 瀏覽:262
公牛蘋果數據線2a什麼意思 瀏覽:489
勒索蠕蟲檢測工具 瀏覽:68
蘋果手錶固件描述文件下載 瀏覽:330
android獲取sd卡視頻文件 瀏覽:949
蘋果手機設置通用網路設置 瀏覽:83

友情鏈接