Skip to main content

Posts

How To Take Screenshot Without Any SOFTWARE and any tool like SPINNING TOOL

Here is the way by which you can easily take a screenshot with your system without using any application. Just follow the given steps. Step 1] Open "Paint"  application program which is already installed in all OS. start->programs->paint Step 2] Open the screen the you Have to copy  and  use ctrl+printscreen (which is on the top right corner) of your existing keyboard.  Step 3] Open the paint application and paste it(ctrl+v) Step 4] Save the image and your screenshot is done.

How to create an MS Excel chart

Charts are very important, we need them many times to emphasis the importance of data. It is easy to create charts in Microsoft Excel  You will need to have some data where you want your chart to be based example: now you will need to go to the Insert Tool bar you will get this bar displayed: Select the table where you have the data en select the type of chart you need: for example I selected the bars one and I got this:

Burn a CD on Windows XP without using software

Windows XP comes with a builtin CD-copy feature that not many people are aware of. Although almost everyone has his/her favorite CD-copy software to stick with, it is still good to know about this CDR feature from Windows XP. You will find it very useful when you come to another PC that doesn't have a CD-copy software, and you can't just install your favorite software to it. With this feature, you can write data or MP3 files to a CD/DVD. Step I : You need to enable the CD-R feature on Windows XP From Desktop, double-click on " My Computer ". Right-click on the CD Drive and select " Properties "           3. Select the tab " Recording " then select the option " Enable CD recording on this drive " and select " Fastest " for the write speed.           5.  Click " OK ".     6.  Your CD Drive is now configured with built-in CD Recording feature enabled.  St...

Turn off the Automatic Windows Defender Operation

Windows Defender is the anti-malware application of Windows, of course provides real-time protection against malware If you have a reliable anti-malware application that you prefer to use, disabling this feature can free up system resources 1. Click on the Start menu 2. Select All Programs, 3. Click “Windows Defender” 4. Click on Tools 5. Click Options (under Administrator options) 6. Uncheck  "Use Windows Defender check box" 5. Click Save.

Get Command Prompt on Right-Click

Frequent computer users and mostly programmers very often need to execute some dos/shell commands. The problem is, when a command prompt window is launched, the default path is normally the system path or the user profile's path. The users will then have to do all the "cd" commands to change the directories to the path they want. This trick shows you how to add an option called "Command Prompt" when you right-click on a folder in Windows. With this option, a Command Prompt Window will be launched and its current directory will be the path to the folder you've selected. Here's what you'll get:   How to Do it??? You can either edit your registry   OR   download the registry file and apply it on your computer. Method I. Manually edit the registry: Start   >   Run Enter " regedit " and hit Enter Expand to " HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell " Right-click on " shell " and sele...

Microsoft Windows Shortcut Keys

Shortcut Key Short Key Description Alt + (double-click) Open Properties dialog of selected item. Alt + Enter Opens properties window of selected item. Alt + Esc Switch Between open tasks available on the taskbar. Alt + F4 Close the top (focused) window. Alt + Tab Switch between open windows. Alt + Tab + Shift Switch between open windows, backward. Ctrl + Alt + Delete (or Del) Bring up the Windows Task Manager, or reboot computer. Ctrl + Esc Bring up the Windows Start menu. Ctrl + '+' ('+' key on the keypad) Autofit the widths of all columns (if available) in current window. Ctrl + F4 Close sub window/tab. Ctrl + Tab Switch between existing tabs (within a window). Ctrl + Tab + Shift Switch between existing tabs (within a window), backward F1 ...

Write A Batch File To Start Programs In Startup

     You can start your computer applications automatically and control the sequence of the programs when your computer comes up. You can start number of applications that you want to start at the time of startup using batch files.     Here we consider you want to run three different applications (WordPad, calculator, and notepad) and minimized automatically with sequence at windows startup. However, you can write a batch file to open any program that is installed on your system. There are many other uses of a batch file but here we are not going to discuss them.     Open any text editor like notepad and type the following command. start /min wordpad.exe start /min calc.exe start /min notepad.exe     Now choose the option, Save As to save this file with .bat extension. For example filename.bat.     Now Right- click on Start button and choose open > Double click Programs > here open Startu...