New Android apps UniqueKey

Showing posts with label Notepad. Show all posts
Showing posts with label Notepad. Show all posts

Tuesday, 12 May 2015

VB Script : Input Box

Write this program in notepad and save it as _filename.vbs 
name=inputbox("Whats your name?")

msgbox("Have a good day, ") + name

VB Script : Fun Program

This is a fun VB Script program. if someone run this program in his pc then it will never end until you finish it from task manager in pc. this is for simple prank. have fun..


Write this program in notepad and save it as _filename.vbs 

DO
msgbox("manoj")
LOOP

VB Script : Simple Program



Write this program in notepad and save it as _filename.vbs 
pass=inputbox("password")

if pass="manoj" then msgbox("correct password")
 else msgbox("password is not correct  try again")

Clock using Notepad


@echo off
:start
echo date:%date% time:%time%
goto start

Sunday, 5 October 2014

Matrix Using Notepad


 
 
 
 
 
 
 
 
 

@echo off
color 1
mode 1000
:a
echo %random%%random%%random%%random%%random%
%random%%random%%random%%random%%random%
%random%%random%%random%%random%%random%
%random%%random%%random%%random%%random%
%random%%random%

goto a

Note : type "random" any number of times that you want . 

Timer Using Notepad


@echo off
echo 5
ping localhost -n 2 >nul
cls
echo 4
ping localhost -n 2 >nul
cls
echo 3
ping localhost -n 2 >nul
cls
echo 2
ping localhost -n 2 >nul
cls
echo 1
ping localhost -n 2 >nul
cls
echo time out!!!!
pause

Type this code in notepad and save as .bat file  and run.

Clock using Notepad


@echo off
:start
echo  date:%date% time:%time%
goto  start

Type this code in notepad. and save this file as .bat and run this file.