Skip to main content

Posts

How to Change the colour scheme in Microsoft word 2007

Would not it be good to have good colour schemes for a change in Microsoft word, simply to make you feel better? Well, then you can do the following to change the colour scheme in Microsoft word 2007. Click the Office button. At the bottom of the emerging splash screen, you will be able to find an option called word options. Click on it, and then in the word options window, under the popular set the color scheme to suit your choice.

Open with dialog appears when drive is double clicked in windows

This problem is mainly due to the presence of the Autorun.inf file in the root directory of the drive. For that you will have to make sure that this file is visible and not hidden. For removing this autorun.inf file, first move to the root directory of the drive where you have this open with problem, using the command prompt. Then we change the permissions of the fle and then we delete the file. Open Start > run > cmd Execute the following instructions one by one in the command prompt. Cd \ C: attrib -h -s -r *.inf del *.inf Note: You will have to restart or log off for the system to accept changes. Replace C: in the above command (the second one) with the drive letter from which you want this open with problem eradicated. E.g. D: Here * is used just to make sure that any INF file (other than the Autorun) will get deleted in the root directory

Desktop wallpaper is blank (with a blue screen) in windows Xp

If the desktop wallpaper appears blank and if you get a blue screen instead of it(even after you had set up a wallpaper), you will just have to make a small modification to make sure that your desktop is back to normal again. Right click anywhere on the desktop and then select properties. Go to the display tab and then click the Customize desktop button. In the resulting window, click the web tab. Under WebPages, make sure that all of them are unchecked. Apply the changes. Now your desktop should function as normal. Try changing the wallpapers and check whether the changes are applied properly. Good luck.

Windows installer errors in windows xp

Sometimes softwares while installing may throw windows installer errors. Mostly these errors can be resolved by following the following steps. Start > run and then type the below, msiexec /regserver  and click  ok. then open the run dialog box again and type: msiexec /unreg and click the ok button.

Format a pen drive affected with virus

Open command prompt and type "format diskname:" without the quotes. For example to format the d-drive of your computer type format d: Look out for the drive name of your pendrive and then format it. Formatting a drive will delete all data in it!

Hide a widget in blogger using CSS temporarily

At times, it might be needed to hide any widget which might not be needed temporarily without deleting it. So, to do that, define a CSS with the id of the widget and then include the following code, visibility:hidden; For example, #widget1 { //other CSS contents; visibility:hidden; } Where widget1 is the id of the widget. To redisplay the widget you simple need to remove the visibility option.

How to Comment inside CSS

It is a good practice to always include comments inside your cascading style sheets, for easy references later. Just use the /* sequence to begin the comment followed by the comments you want to type in. And then end the comment with */. e.g.: /* comment here */ Note: comments can be multi line.