|Hacker| Warga 1+
Jumlah posting : 106 Reputation : 35 Join date : 03.09.11 Age : 32 Lokasi : cilegon,jawa barat
| Subyek: [SHARE]Cara Membuat Command Close Sun Sep 04, 2011 4:51 pm | |
| GK usah basa basi nih w kasih tau 1.Buat sebuah Module dolo masukan Source Code Ini - Spoiler:
#If Win16 Then Type RECT Left As Integer Top As Integer Right As Integer Bottom As Integer End Type #Else Type RECT Left As Long Top As Long Right As Long Bottom As Long End Type #End If
#If Win16 Then Declare Sub GetWindowRect Lib "User" (ByVal hwnd As Integer, lpRect As RECT) Declare Function GetDC Lib "User" (ByVal hwnd As Integer) As Integer Declare Function ReleaseDC Lib "User" (ByVal hwnd As Integer, ByVal hdc As _ Integer) As Integer Declare Sub SetBkColor Lib "GDI" (ByVal hdc As Integer, ByVal crColor As Long) Declare Sub Rectangle Lib "GDI" (ByVal hdc As Integer, ByVal X1 As Integer, _ ByVal Y1 As Integer, ByVal X2 As Integer, ByVal Y2 As Integer) Declare Function CreateSolidBrush Lib "GDI" (ByVal crColor As Long) As Integer Declare Function SelectObject Lib "GDI" (ByVal hdc As Integer, ByVal hObject _ As Integer) As Integer Declare Sub DeleteObject Lib "GDI" (ByVal hObject As Integer) #Else Declare Function GetWindowRect Lib "user32" (ByVal hwnd As Long, _ lpRect As RECT) As Long Declare Function GetDC Lib "user32" (ByVal hwnd As Long) As Long Declare Function ReleaseDC Lib "user32" (ByVal hwnd As Long, ByVal _ hdc As Long) As Long Declare Function SetBkColor Lib "gdi32" (ByVal hdc As Long, ByVal _ crColor As Long) As Long Declare Function Rectangle Lib "gdi32" (ByVal hdc As Long, ByVal X1 As Long, _ ByVal Y1 As Long, ByVal X2 As Long, ByVal Y2 As Long) As Long Declare Function CreateSolidBrush Lib "gdi32" (ByVal crColor As Long) As Long Declare Function SelectObject Lib "user32" (ByVal hdc As Long, ByVal hObject _ As Long) As Long Declare Function DeleteObject Lib "gdi32" (ByVal hObject As Long) As Long #End If
Sub ExplodeForm(f As Form, Movement As Integer) Dim myRect As RECT Dim formWidth%, formHeight%, i%, X%, Y%, Cx%, Cy% Dim TheScreen As Long Dim Brush As Long GetWindowRect f.hwnd, myRect formWidth = (myRect.Right - myRect.Left) formHeight = myRect.Bottom - myRect.Top TheScreen = GetDC(0) Brush = CreateSolidBrush(f.BackColor) For i = 1 To Movement Cx = formWidth * (i / Movement) Cy = formHeight * (i / Movement) X = myRect.Left + (formWidth - Cx) / 2 Y = myRect.Top + (formHeight - Cy) / 2 Rectangle TheScreen, X, Y, X + Cx, Y + Cy Next i X = ReleaseDC(0, TheScreen) DeleteObject (Brush) End Sub
Public Sub ImplodeForm(f As Form, Movement As Integer) Dim myRect As RECT Dim formWidth%, formHeight%, i%, X%, Y%, Cx%, Cy% Dim TheScreen As Long Dim Brush As Long GetWindowRect f.hwnd, myRect formWidth = (myRect.Right - myRect.Left) formHeight = myRect.Bottom - myRect.Top TheScreen = GetDC(0) Brush = CreateSolidBrush(f.BackColor) For i = Movement To 1 Step -1 Cx = formWidth * (i / Movement) Cy = formHeight * (i / Movement) X = myRect.Left + (formWidth - Cx) / 2 Y = myRect.Top + (formHeight - Cy) / 2 Rectangle TheScreen, X, Y, X + Cx, Y + Cy Next i X = ReleaseDC(0, TheScreen) DeleteObject (Brush) End Sub
2.Masukan Source Code Ini Ke Form Kalian - Spoiler:
Private Sub Command1_Click() 'Replace all the '500' below with the Speed of the Explode\Implode Effect. Call ImplodeForm(Me, 500) End Set Form1 = Nothing End Sub
Private Sub Form_Load() Call ExplodeForm(Me, 500) End Sub
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer) Call ImplodeForm(Me, 500) End Sub
SElesai Dah 3.Tinggal Buat Comand BUtton Dan Tinggal Edit Captionnya SEBELUM KALIAN LIAT TERLEBIH DAHULU BACA RULES FORUM | |
|
egysaputra Acces Denied
Jumlah posting : 121 Reputation : 25 Join date : 04.09.11 Lokasi : Depan Komputer
| Subyek: Re: [SHARE]Cara Membuat Command Close Sun Sep 04, 2011 9:18 pm | |
| | |
|
Anis Warga
Jumlah posting : 48 Reputation : 27 Join date : 03.09.11 Age : 28 Lokasi : Bandung
| Subyek: Re: [SHARE]Cara Membuat Command Close Mon Sep 05, 2011 9:32 am | |
| | |
|
AnonymousHacker Warga 1++
Jumlah posting : 145 Reputation : 9 Join date : 04.09.11 Lokasi : MMMMMMMMMMMMMMMMM Moderator KARAMECA
| Subyek: Re: [SHARE]Cara Membuat Command Close Mon Sep 05, 2011 9:46 am | |
| - egysaputra wrote:
- Ini Injector Atau Apa
ini supaya buat icommandnya close bos | |
|
|Hacker| Warga 1+
Jumlah posting : 106 Reputation : 35 Join date : 03.09.11 Age : 32 Lokasi : cilegon,jawa barat
| Subyek: Re: [SHARE]Cara Membuat Command Close Mon Sep 05, 2011 12:12 pm | |
| COMMANDNYA UNTUK DI INJECTOR GAN
| |
|
Egy Karameca II Warga
Jumlah posting : 13 Reputation : 0 Join date : 05.09.11
| Subyek: Re: [SHARE]Cara Membuat Command Close Mon Sep 05, 2011 1:03 pm | |
| | |
|
|Hacker| Warga 1+
Jumlah posting : 106 Reputation : 35 Join date : 03.09.11 Age : 32 Lokasi : cilegon,jawa barat
| Subyek: Re: [SHARE]Cara Membuat Command Close Mon Sep 05, 2011 2:16 pm | |
| Jngan Lupa Kasih ++++++++++++ | |
|
Sponsored content
| Subyek: Re: [SHARE]Cara Membuat Command Close | |
| |
|