Posts

Showing posts from 2012

Cracking IT Interview

Run C++ (Full Screen mode) in Windows7

Image
The installation procedure of TC++ compiler is very simple. However if you install TC++ compiler in windows Vista/7, window size becomes very small. or you may get following error when you tried to open TC++ To overcome this you can download x86 emulator called DOSBOX from the following link http://sourceforge.net/projects/dosbox/files/dosbox/ once you have downloaded this emulator carry out the following steps: install the dosbox create a folder called 'Turbo' on your c drive copy entire Turbo C++ software inside this 'c:\Turbo' folder start dosbox you would be presented with two screens. you need to use the one which has z> prompt in it.  Type the following command at z>prompt mount x c:\Turbo mount d c:\Turbo\TC d: cd bin tc By typing the last command "tc" you are executing the turbo c++ software. This would bring up the normal blue colored TC++ window. to increase the window size just press Alt+Enter. now the TC++ window wi...

how to display html tags in browser?

Image
whenever you tried to publish a html code in your browser, the browser will display the output of the code instead of displaying the actual code. eg. when you want to publish a html code for displaying hello world message. u can directly give the following code. the browser will process the html tags and display Hello World instead of printing the actual code. so try to replace < with "& lt;" and > with "& gt;" this will help you to display the actual code on browser.

Simple Login Page Using HTML5

Image
hi.. i find HTML5 is the easiest way to develop a site. so me tell you how to create a login page using HTML5 with all validations.. 1. use dreamweaver to create the login form. 2. insert a form, create a table, type those text and add 3 text fields or just copy& paste the following code .. //index.html <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> <table width="100%" border="0"> <tr> <td valign="middle" height="700"> <form name="form1" method="post" action="login.php"> <table width="300" border="0" align="center"> <tr bgcolor="#CCCCCC"> <td colspan="2"> ...

How to prevent chkdisk error on every boot ??

Image
One of Windows annoying so called “feature” is CHKDSK being automatically being run whenever you don’t shut down your computer properly. You get the blue colored screen that says “Checking file system on C: The type of the file system is NTFS. One of your disks needs to be checked for consistency. You may cancel the disk check, but it is strongly recommended that you continue. To skip disk checking, press any key within 10 seconds(s). There are some people suggested to edit the registry but the proper way to disable CHKDSK from starting up is using the /x switch on chkntfs command in command prompt. The /x switch will exclude a drive from the default boot-time check. If you have drive C: as your hard drive, then the command to disable chkdsk from scanning C: drive would be: chkntfs /x c: If you have 2 drive, C and D, you can disable chkdsk with the command below chkntfs /x c: d:

Copy and Paste not working in Windows Xp?

Go for Start-->Run-->services.msc in the right pane Try to start/ Restart the following services 1.Network DDE DSDM. 2. Network DDE. 3.Clipbook. Restart the system . Now you will able to copy and paste.