Showing posts with label notepad. Show all posts
Showing posts with label notepad. Show all posts

Thursday, June 14, 2012

4 Simple Notepad Tricks

Hello friends,how are you?how is your life going on?Are you getting bore with my blogs?i know that you all enjoying my blogs a lot,today i'm sharing some interesting tricks of Notepad,just read it carefully and try to understand it:):)

notepad

 

 

1)Matrix Effect :-


  • Copy the below text in a notepad :
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
  • Save the file with .bat extension,after that open the file and see the magic.


2)Continuously Display Messages :


  • Copy the below text in a notepad :
@echo off
:begin
msg * Hi
msg * Are you having fun?
msg * I am!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
goto begin
  • Save the file with .bat extension,after that open the file and see continuous messages come in front of you.



3)Convey Your Friend A Message And  Shutdown His / Her Computer:-


1)@echo off
  msg * I don't like you
  shutdown -c "Error! You are too stupid!" -s

2)Save it as Anything.BAT in All Files and   send it.





4)Open Notepad continually in your friend's computer:-


1)@echo off
  :top
  start  %systemroot%\system32
  notepad.exe
  goto top


2)Save it as Anything.BAT and send it.



              ****Thanks Friends****

Saturday, June 09, 2012

How to create a CSV(Comma Seperated Value) file?



Friends, comma-separated values (CSV) file is any file containing text that is separated with a comma, but can also be a file separated with any other character. To create a CSV is as simple as creating any text file and can be created in any text editor, however, is often created in a spreadsheet program such as Microsoft Excel. Below are the steps on how to create a CSV file using a text editor such as Notepad.



To create a CSV file in a text editor open a new text editor program, such as Notepad. Once open write the text you wish the file to contain and separate each field or column of data with a comma and each row with a new line.



Title4,Title5,Title6
one,two,three
example1,example2,example3




As an example, if you were to create a text file with the above data, and save it as a CSV file, each column is created by each comma and each row is created by each new line. Therefore, the above data if opened in a spreadsheet program such as Microsoft Excel would create a table similar to the below example.



Title4Title5Title6
onetwothree
example1example2example3



                   Thanks Friends........

Tuesday, April 24, 2012

Keep A Log With Microsoft Notepad

Friends This is really very interesting please do this and after that see the magic:):):):)


Keep a log using Microsoft Notepad by opening a new text file in Microsoft Notepad or an existing text file in Notepad and adding ".LOG" (without the quotes) at the beginning of the file. Now each time the file is opened in Notepad a time and date stamp will be automatically added.


************Thank you************

Popular Posts