function uppercase( const s: string ) :string;
說明:用於將 s 字串中的所有小寫字母轉化為大寫字母 其他字元不變
varsss:string;
sss := 'w 我的asdgh';
showmessage( string.uppercase(sss) );
結果:w 我的asdgh
function lowercase( const s: string ) : string;
說明:用於將s字串中的所有大寫字母轉化為小寫字母,其他字元不變
varsss:string;
begin
sss := 'w 我的asdgh';
showmessage( string.lowercase(sss) );
end;
結果:w 我的asdgh
Delphi學習中使用到的部分技巧
function windowslogin host,user,passwd pchar dword varrc dword netres tnetresource begin fillchar netres,sizeof tnetresource 0 netres.dwtype resourcet...
delphi中函式指標的使用
delphi中可以通過函式指標把乙個函式作為引數來傳遞,然後在另外乙個函式中呼叫。1 首先,申明函式指標型別tfunctionparameter type tfunctionparameter function const value integer string 函式指標 2 定義準備被作為引數傳...
關於TCHART控制項 Delphi 部分Code
procedure ttfchart.timer1timer sender tobject var amount double begin self.caption 現在的溫度是 floattostr roundto main.valuet,2 攝氏度 with chart1 do begin wi...