Membuat Aplikasi Dgn Note Pad (informasi Anak IT)


Seputar Anak IT :)
Ane baru ajah bikin aplikasi dari Notepad
Tapi blom jadi Hehehe
Tapi gpp...

Ane mau ngasih informasi bwt kalian 
Informasi kali ini "Membuat aplikasi Dgn Note Pad" 
Mau Tau Caranya?
Simak Baik-Baik




1. Otomatis membuka dan menutup CD/DVD Komputer
Copy script dibawah ini dan paste di notepad anda.

Set oWMP = CreateObject(“WMPlayer.OCX.7″)
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop

Simpan dengan format *.vbs. (contoh, otomatis.vbs)
Lalu Buka File Tersebut

2. Otomatis Mengetik di Notepad
Copy script dibawah ini dan paste di notepad anda.

Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “Tulisan ini akan menulis sendiri di notepad anda”
loop

Simpan dengan format *.vbs. (contoh, Menulis.vbs)
Lalu Buka File Tersebut

3. Membuat Pesan muncul berulang – ulang
Copy script dibawah ini dan paste di notepad anda.

@ECHO off
:Begin
msg * hahahhaa
msg * santai boss
msg * ini hanya main-main
msg * jangan marah ya
msg * kunjungi blog saya di, blog-prayoga.blogspot.com
GOTO BEGIN

Simpan dengan format *.bat. (contoh, muncul.bat)
Lalu Buka File Tersebut

4. Membuat Komputer Shutdown dengan muncul pesan.
Copy script dibawah ini dan paste di notepad anda.

@echo off
msg * Mampus Kau..
shutdown -s -c “Komputer anda mati”

Simpan dengan format *.bat. (contoh, shutdown.bat)
Lalu Buka File Tersebut

5. Membuat Tombol Capslock terus menyala
Copy script dibawah ini dan paste di notepad anda.

--> Set wshShell =wscript.CreateObject(“WScript.Shell”) do wscript.sleep 100 wshshell.sendkeys
       “{CAPSLOCK}” loop

Simpan dengan format *.vbs (contoh, capslock.vbs)
Lalu Buka File Tersebut

6. Membuat Virus Sederhana
Copy script dibawah ini dan paste di notepad anda.

lol=msgbox ("Warning a virus has been detected on your PC. Press YES to format your hard disk now or press NO to format your hard disk after system reboot",20,"Warning")

Simpan dengan format *.vbs (contoh, virus.vbs)
Lalu nanti setelah terbuka pilih Yes atau No

7. Membuat Kalkulator Sederhana
Copy script dibawah ini dan paste di notepad anda.

======================================
@echo off
title Kalkulator by : infopc
:ulang
echo Mari berhitung Dengan infopc...!!
set /p A=Masukkan Angka Pertama =
set /p B=Masukkan Angka Kedua =
set /p o=Pilih pengoperasian anda (*, +, -, /) =
set /a "jumlah" = A%o%B
echo Jumlah = %jumlah%
pause>null
goto ulang
======================================


Simpan dengan format *.bat (contoh, kalkulator.bat)
Lalu buka Filenya


Sekian Dari Saya :)

Komentar