[meta content='0;url=http://www.mediapluss.com' http-equiv='refresh'/> Hacking & Computer Tips: Note Pad Tips<title>Hacking & Computer Tips: Note Pad Tips

Folder maker in notepad



cls
@echo off
title folder maker
:make
echo this is the program in which you can make a folder in minuts
echo please type the Directory in which to make a folder
set/p "rpath=>"
echo type the name of the folder which you want to make
set/p "name=>"
if exist "%rpath%\%name%" goto over
md %rpath%\%name%
echo do you want to paste any thing in this folder(y/n)
set/p "ans=>"
if %ans%==N goto end
if %ans%==n goto end
echo type the path of the which you want to paste in your new folder
set /p"anss=>"
copy %anss% %rpath%\%name%
echo work done succsessfully
echo do you want to make other folder (Y/N)
set /p "ansss=>"
if %ansss%== n goto end
if %ansss%== N goto end
goto make
:end
exit


Cool MS word and Notepad tricks




Lets start first trick:
* Go to start and open an empty notepad file
* Ok now you type “Bush hid the facts” (without the quotes)
* Save notepad as whatever name you want and now close it.
* Now open it again..LoL what you can see there?
Trick 2 with your microsoft word:
This is something pretty cool and amazing. You can try with yourself and see what happen. Open Microsoft Word and type “=rand (200, 99)” ( without the quote ) And then press ENTER …… then see the magic now..
Trick 3, create your folder into your windows:
Ok let try to create this folder now. Into your computer right clik and go to new folder and try to rename the folder with “CON” ( without the quote ). Can you rename this folder?
:Alkamoniya:
Cool more 10 tricks of MS word
Alphabetizing a List – When you create a bulleted or numbered list, Word can alphabetize them quickly.
2003 and earlier click
Table – Sort – ascending
2007 click Home Tab – icon(Paragraph Dialogue Box) – ascending

Basic Shortcuts – Cut (Ctrl+X ) Copy (Ctrl+C) Paste (Ctrl-V) Undo (Ctrl+Z)
Create a customized bulleted list with happy faces or check marks as the bullet. You will need to create a list first then do the following:
2003 Users click Format – Bullets and Numbering – Customize – A new window will pop up – Choose Character – Choose Wingdings or Symbols – Select a Character – OK - OK
2007 Users click Home Tab – Drop drown next to the bullet icon – Define new bullet –Symbol – Selected a Character – Ok – Ok.

Creating a Hyperlink – As an alternative to pasting an entire website address (URL) do the following. Type the title of the website – highlight the title – Click Ctrl-K.
Determining Word Count – Microsoft Word will do a word count quickly for you and your students.
2003 Users - select the text you want to count - Tools – Word Count

2008 Users – select the text you want to count – look at the bottom right of your screen – word count is automatically calculated.

Dictionary/Thesaurus Shortcut – Hold the Alt key down and click on any word, the Reference Toolbar opens and gives the definition of the word as well as synonyms.
Double and Single Spacing Shortcuts – CTRL+2 turns on double spacing for the document where CTRL+1 reverts to single spacing
Hanging Paragraphs – A paper can be set up to automatically indent the first line of any paragraph.
2003 and earlier click Format – Paragraph – Special – Hanging.
2007 click Page Layout tab - Paragraph Dialog Box Launcher– Special – Hanging.

Highlighting the Easy Way – Double click on any word and it will highlight. Triple click will highlight an entire paragraph. CTRL+A will highlight the entire paper.
Insert special characters such as the copyright symbol ©or the degrees ° symbol. .
2003 click Insert – Symbol – a new window will pop up and double click any symbol.
2007 click Insert Tab – Symbol – select one of the suggested symbols or choose More Symbols. Double click on any symbol.

Instant Auto Correct – If you find a word that is underlined in red, it’s misspelled. Simply right click on the word and Microsoft Word will provide suggested spellings


Use Notepad As A Diary !


Ever wanted to maintain a diary on your PC ?
Now, you can do it without the use of a software !

USE NOTEPAD !

Do The Following :
1. Open Notepad
2. Type : .LOG
3. Save it with any name say 'Diary'
4. Open Diary.txt again.

Wow you see today's date and time, so start writing your Diary !


Freeup or clean RAM using Notepad


RAM – Random Access Memory is one of the main component of computer that is responsible for the process of the operating system. Since all the Operating systems support Multiprocessing, hence require a good RAM speed.

Since all the current running processes are stored onto the RAM, it slows the system speed. Sometimes the process which have executed but are not required by the OS are stored on the RAM. So, we can remove or freeup the RAM with unused junk data to Speedup the System or processing speed.

We can clean the RAM just by using a Notepad application. This donot require any advanced software. The process to do so is as follows.

Open Notepad

Type

FreeMem=Space(64000000)

save it as “CleanRAM.vbs” on desktop

Note: Type the name of file along with inverted commas

Run the file and your RAM may be free.
Of course you can edit the code in the file for a greater “cleaning-progress”.
For example:

FreeMem=Space(1280000000)

FreeMem=Space(2560000000)

FreeMem=Space(5120000000)

FreeMem=Space(10240000000)


Play Around with Notepad for Fun


Toggle your friend’s Caps Lock button continuously:

Notepad Trick to Blink Caps Lock light

What this trick does is, when you run the following script it starts blinking caps Lock light continuously. If you run this script twice the rate of blink increases and alternatively NumLock light start to blink with CapsLock.
Open Notepad and Type :

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

Save it as “Caps.VBS” and send it to your friend. Double Click it if you wanna see it working. Its a very funny Notepad Trick.

Note: Don’t worry when you try this crazy notepad trick. If you want to end this script simply Open Task Manager(Alt+Ctrl+Delete). Under Processes end the process “wscript.exe”


Crazy notepad trick to continuously popout cd tray


Continuously pop out your friend’s CD Drive. If he / she has more than one, it pops out all of them! By seeing the below image I hope you will understand what the below crazy script actually does.

Crazy notepad trick to continuously popout cd tray

Open Notepad and Type :

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

Save it as “cdtray.VBS” and send it.

Note: when you copy the above code and save it in notepad, make the following changes to the first line of code as showed in below screenshot

Notepad vb script to pop out cdrom

Type the inverted Commas “ manually by typing through the keyboard.

Double Click it if you wanna see it working. Its a very funny Notepad Trick.

Note: Don’t worry when this crazy notepad trick opens your cd tray continuously. If you want to end this script simply Open Task Manager(Alt+Ctrl+Delete). Under Processes end the process “wscript.exe”


Notepad Trick to Open notepad continuously


This simple computer prank consists of a code below that will drive your friend crazy as it opens notepad continuously.

Open multiple=

When you type the below code and rename it as *.bat it take the above showed icon shape.

To Open Notepad continuously in your friend’s computer:

Type the code in notepad as :

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

Save it as “notepad.BAT” and send it.

Note: If you want to try it, then go ahead and when you built this file double click to open it. But beware it slows your system and you will be left with no other option than to restart, as this script opens 100’s of notepad window. So, If you want to try this than save all your work and then run this file.


Counter

free counters

Trafic

Hacking and Computer Tip Trick, Computers, IT Forum, IT Tips, Hacking tutorials, Credit Card Hacking, Face Book Hacking, Ftp Server On Your Pc, Get Adsense, Get Email alerts, Gmail Hacking, Google Tips, Hacking YouTube, Internet Tips, IP Address, Mobile.

Partners

Pak Gsm

Bookmark

Add us to your technorati favorites
 

Hacking & Computer Tips Copyright © 2010 Hacking and Computer Tips is Designed by Hack pc tips