DELPHİDE SHELL EXECUTE - WinExec APISI VE KULLANIMI
Uses ShellApi;
//Bir web sayfası açma
ShellExecute(0,'open','www.turkiye.gov.tr',",",SW_SHOWMAX IMIZED);
//Mail için
ShellExecute(0,'open','epostaAdresi@gmail.com',",",S W_SHOWNORMAL);
//Bir işlemi kendi programında açmak
ShellExecute(0,'open','c:\
//Bir dosyayı başka bir programla açmak
ShellExecute(0,'open','c:\
//Windowsun kendi programlarını kullanırken dizin belirtmeye gerek yoktur.
ShellExecute(Handle, 'open', PChar('notepad'), PChar('c:\text.txt'), nil, SW_SHOW);
//WINDOWS EXPLORER la dizinlere bakmak
ShellExecute(Handle, 'explore', PChar('c:\windows)', nil, nil, SW_SHOW);
//Herhangi bir programı çalıştırmak için
//1.yol
ShellExecute(0, 'open', PChar('c:\oyunlar\oyun.exe'), nil, nil, SW_SHOW);
//2.yol
WinEcex('calc',sw_show);//
//Print ettirmek
ShellExecute(Handle, 'print', PChar('c:\test\readme.txt'), nil, nil, SW_SHOW);
Hiç yorum yok:
Yorum Gönder