1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| unit PhcUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls, imgList, ActnList,shellApi;
function Minuscule(const s: string): string;
procedure IntLnk(lnk:string);
//----------------------------------------------------------------------------------------------
Type
Label1=Tlabel;
Var I:integer;
//----------------------------------------------------------------------------------------------
implementation
//----------------------------------------------------------------------------------------------
function Minuscule(const s: string): string;
begin
Result := s;
if Result = '' then Exit;
result:=AnsiLowerCase(Result);
end;
//----------------------------------------------------------------------------------------------
procedure IntLnk(lnk:string);
var handle:Hwnd;
begin ShellExecute(Handle, 'open', PChar(lnk), nil, nil, SW_NORMAL);end;
//---------------------------------------------------------------------------------------------------
end. |
Partager