Dani Amarullah

Just Try in Error

Membuat Aplikasi Hiden in Task Manager

OK mannnnn sekarang saya ada sebuah contoh program yang bisa Hide di proses taskmanager(Ctrl+Alt+Del).

pertama donlot dulu file dll nya disini Tapi maaf untuk source dll nya salah lom punya,hehehehe cuma dapet dari mana gitu saya lupa lagi…heheheh

ini perintah untuk penggunaannya.

function HideXP(hProg: HWND): Boolean; stdcall; external 'hide.dll' name 'HideProcess';

procedure TForm1.Button1Click(Sender: TObject);
begin
  if HideXP(Application.Handle) then ShowMessage('Hidden');
end;
Syntax Highlighted with http://delphi-id.org/syntax

Semoga bermanfaat dan digunakan untuk yang bermanfaat pula…..

best Regards
Dani Amarullah

July 18, 2007 - Posted by | D3lPhE

1 Comment »

  1. Aq Kenshin….
    Aq kmaren tanya (lewat MessageBox di klik-kanan.com)
    tentang ubah string jadi ASCII…(Pake delphi)

    Udah ketemu…
    Thanx…

    var
    AsciiVal: integer;
    C: Char;
    S: string;
    begin
    C := ‘B’;
    AsciiVal := Ord(C); // gives ASCII-code of ‘B’
    AsciiVal := Ord(Edit1.Text[1]); // ASCII first character of text in Edit1
    S := ‘Test’;
    AsciiVal := Ord(S[2]); // ASCII-code of ‘e’

    But the following will not work:

    AsciiVal := Ord(Edit1.Text); // error because Edit1.Text is type “string”

    Comment by Dwi Cahyono | September 12, 2007 | Reply


Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.