PC Media Antivirus (PCMAV) 1.91

January 6, 2009

How to Embed Music in a PowerPoint Presentation

December 19, 2008
  1. In PowerPoint, highlight the slide where you want the music to start.
  2. From the menu, choose:

    INSERT > MOVIES AND SOUNDS > SOUND FROM FILE

    Powerpointsound01.jpg

  3. Browse in dialog box to choose music file. Answer “Do you want your sound to play automatically in the slide show?”
  4. You will see a sound icon on your slide. Reposition icon.

    Powerpointsound02.jpg

  5. To adjust playback options, right-click sound icon and choose CUSTOM ANIMATION. Choose EFFECT OPTION from drop-down list.

    Powerpointsound03.jpg

  6. PowerPoint will automatically embed supported sound files up to 100K in size. Files larger than the default setting will be linked, not embedded.
  7. To increase the default to 50,000K in size, choose:

    TOOLS > OPTIONS

    PowerPointSound04.jpg

  8. In the OPTIONS dialog box, select the GENERAL tab. Change 100 Kb to any number up to 50,000 Kb. Click OK.

    PowerPointSound05.jpg

  9. Files larger than the selected size will be linked, not embedded. You must copy linked files with your presentation file to transport your presentation. Embedded sound files are part of your presentation file.

Print Cells to Every Page in Microsoft Excel

November 23, 2008

You may wondering how to create title which able to be shown in every page (not Header).

Here we go..

  1. Click View –> Page Break Preview. Now your active sheet is now divided onto pages.
    Drag blue border line to customize your print area.
  2. Click File –> Page Setup from the menu, clicking the Sheet tab, and telling Excel which row and column titles you want to appear at the top and/or left of every printed page.
  3. Click File–>Print Preview.
  4. Tada! Now you got what do you want.

Good luck and have a nice Excel. ;)


Hide / Add / Embed your secret files in JPG

October 14, 2008

This the simplest in steganography form (but without any advance protection such as password). But, very tricky way.. ;)

How to doing this?

In Windows:
1. Gather the file you wish to bind, and the image file, and place them in a folder. For example I will be using D:\Celly The image we will be using an example will be mylove.jpg
2. Add the file/files you will be injecting into the image into a WinRar .rar or .zip. From here on this will be referred to as (truelove.rar)
3. Open command prompt by going to Start > Run > cmd
4. In Command Prompt, navigate to the folder where your two files are by typing cd D:\Celly
5. Type copy /b mylove.jpg + truelove.rar ourlove.jpg

In Linux:
I assume that you have understand about path system. Then, just type cat mylove.jpeg truelove.rar > ourlove.jpeg

In order to view/extract your file

In Windows:
1 Change the file extension from ourlove.jpg to ourlove.rar, then open and your file is there
2. Leave the file extension as is, right click, open with WinRar and your file is there..

In Linux:
Simply type this: unrar e ourlove.jpeg

This is a good example: http://img153.imageshack.us/img153/3742/testrj6.jpg

Enjoy! ;)


Change localhost to Your Own Domain

October 2, 2008


If you ever thought to change localhost to yourdomain.com, then everything you need is just by following this steps:

  1. Edit C:/WINDOWS/system32/drivers/etc/host
  2. Add your wishes:

    127.0.0.1 localhost
    127.0.0.1 yourdomain.com

  3. Edit C:/Program Files/xampp/apache/conf/extra/httpd-vhosts.conf
  4. Add these to the last lines:

    NameVirtualHost localhost:80
    <VirtualHost localhost:80>
    DocumentRoot e:/xampp/htdocs
    ServerName localhost
    </VirtualHost>

    NameVirtualHost yourdomain.com:80
    <VirtualHost yourdomain.com:80>
    DocumentRoot e:/xampp/htdocs/yourdomain
    ServerName yourdomain.com
    </VirtualHost>

  5. Restart your Apache.
  6. Now try to browse http://yourdomain.com

Good luck ;)