HP Mini 110 3000 Netbook Bottom Housing Case


Price: RM70
Code: HPMini1103000-BTM


casing for laptop area:
Palmrest, Touchpad, and Bottom Base Case
without any panel or ribbon inside case.


Fit Models:
HP Mini 110-3000 series: 3004TU 3012TU 3028TU 3130TU

Outlook: not very bad [good shape]
Condition: Used.

======================================
contact: Mr Zul 0127319949
COD Area: Plentong, Masai, Pasir Gudang, Ulu Tiram,
----------- Johor Jaya, Taman Molek, Tebrau,
----------- or other area of Johor Bahru, or
----------- Segamat or Bandar Mas, Kota Tinggi Johor
Courier: by Pos Laju
Payment: Bank transfer or cash
Pos Laju Courier: + RM10

Dont forget to see my other ads.
======================================

Other services:
- Format or service laptop immediately at main area, other area can considered.
- Delivery at main area radius. other area can considered.
- Accept faulty, semi-faulty or used laptop.
- Laptop CPU Cooling Fan Services.






Read More..

IE Does Not Remember Name and Password Sign into Blogger Blogspot the easy way

Get Auto complete working your way.

For most PCs using Internet Explorer, the Blogger Dashboard (http://www.blogger.com/home?pli=1) will not remember the name and password. Do this if your blogger sign in details are the same as your Gmail account.

Go to the Google/Blogger sign in page:
"https://www.google.com/accounts/Login?service=blogger"

Type in your username usually your email address and password.
Sign in.

You will be taken to a page with all your Google owned sites listed:
"https://www.google.com/accounts/ManageAccount?pli=1".

Note: Blogger is on the list.
No, dont click it yet!

Now right click the mouse and add the Google sign in page to "Favorites"- the "https://www.google.com/accounts/ManageAccount?pli=1" page (see this URL in IE address window).


Click Favorites at the top of IE.
Go down to the end of the Favorites list.

Note that it is there at the bottom as
https://www.google.com/accounts/ManageAccount?pli=1.


Left click on this Favorite and drag it up onto the "Favorites Bar".
Right click and rename it "Blogger Account".


Next time you open Internet Explorer go to the Favorites Bar, click on the "Blogger Account" icon. When the Gmail page opens click on "Blogger" and your into the Blogger account very quick.

Oddly, if you have signed out of your Blogger account (like at Startup) and click the "Blogger Account" icon in the Favorites Bar, the page will now probably open with the normal Blogger sign in page and the autosave name and password feature will be working! Internet Explorer is a very peculiar creature



Another odd thing is that after you have done the above, Slim Browser which works by using the IE system on the computer will load you directly into Blogger using the "http://www.blogger.com/home?pli=1&pli=1" link (note it is a different sign in page) without even asking for a name and password whether you are signed in or out of Blogger (but not IE). It makes you wonder just how many sign in pages Google and Blogger need?

P.S. Make sure "Protected Mode" is ticked in "Restricted sites", "Local intranet", Trusted sites" and Restricted sites" in Security on Internet Options. Otherwise, Blogger could keep opening IE after IE, over and over, because Internet Explorer is weird.
Read More..

How to Uninstall the Vista Service Pack

In the world of computer operating systems, controversy surrounded the release of Windows Vista. Said to be a cumbersome system hog, Vista utilized a ton of your computers memory and processing resources and frequently interfered with your applications in the name of security. With everyone complaining, Microsoft released service packs for Vista that addressed some of the common problems and other security issues. For some people, installing a service pack caused more problems, such as loss of Internet connectivity or proper application functioning. Uninstalling a service pack can sometimes fix such problems. There are two primary methods for doing so.

Instructions

    Using the Application Wizard

  1. Step 1

    Click the "Start" button in the lower left corner of your desktop.

  2. Step 2

    Type "appwiz.cpl" in the search box, then choose "Appwiz" from the list of programs that comes up. Wait for the program to start.

  3. Step 3

    Click the option to "View installed updates." A list of all the updates that you have installed for Windows Vista will display.

  4. Step 4

    Find the service pack that you wish to uninstall, highlight it, and click "Uninstall." Follow the instructions that are displayed to complete the uninstallation process.

  5. Using System Restore

  6. Step 1

    Click the "Start" button in the lower left corner of your desktop.

  7. Step 2

    Type "System Restore" in the search box there, then choose it from the list of programs that comes up. System zrestore can take a few moments to start, so give it time.

  8. Step 3

    Check the "Choose a Different Restore Point" option when the dialogue box comes up. Then click "Next." Windows will display a list of updates for which it has created restore points. Restoring your computer will restore its state from before that particular update was installed. Note that it will roll back all updates that came after that one as well.

  9. Step 4

    Find the restore point that was made for the service pack you wish to uninstall. If it is not in the list, you may need to check the "Show restore points older than 5 days" box. When you find it, highlight it, then click "Next."

  10. Step 5

    Click "Finish." Windows will warn you that once you start the restore process, it is irreversible. Give Windows permission to go forward. The restore process will take several minutes; when it is finished, your service pack and all subsequent updates will be uninstalled.

Read More..

How to Connect 3 Hard Drives To Motherboard At The Same Time

I have 3 Hard drives 2 attached with my comp. 1st master second slave 3rd not attached but has OS on it I use this 3rd HD to test new software. Now is there a way for me to attach all 3 drives at the same time so I do not have to open my case to disconnect the ribbon wire, and unplug their molex power cables? I want a tool or cable to solv the problem since i can only attach 2 HDDs at a time since my motherboard has 2 ports for HDD. I dont want to lose hard drive speeds by using such a new cable either so please let me know.
& how can I set up my pc to choose which OS or hard drive to boot from?
Read More..

How to Use Function Pointers in C

A function pointer is, in essence, just a pointer to a function. In languages such as C++, each function and variable in a computer program exists as a memory address, and a variable can contain the value of that address. That variable can be passed to a callback, which can then call the function that the variable points to. It can also be used in an event manager, or for late binding of a member function. Due to their complicated syntax, function pointers are often avoided by programmers, but can be used to easily accomplish many powerful tasks.

Instructions

Things Youll Need:

  • C++ compiler
  1. Step 1

    Write a C++ program. This is the program in which you will use a function pointer.

  2. Step 2

    Define a function pointer. You can do this one of several ways. Declare a function, such as:

    void doSomething(int data);

    and later declare a pointer to it. Or, you can declare a function as a pointer:

    void (*doSomething)(int);

    Lastly, you can declare a typedef, then create a variable of that type.

    typedef void (*voidTakingInt)(int);

    You can now use "voidTakingInt" as a type:

    void doSomething(int data);
    voidTakingInt fun_ptr = &doSomething;

  3. Step 3

    Declare something that uses the function pointer. This will often be something that uses the function pointer as a callback function, so that when a specific event occurs, the function runs your function. One example is a file-loading function that takes a callback function to indicate progress.

  4. Step 4

    Call the function from the pointer to it. This would be done from within the function you wrote that accepts a function pointer as a parameter:

    void doSomething(int data) {
    }

    void callAnotherFunction(void (*otherFunction)(int)) {

    (*otherFunction)(3);

    }

    int main(int argc, char* argv[]) {

    callAnotherFunction(&doSomething);
    return 0;

Read More..

How to Access My Computer From the Command Line in XP

If you need to access the command line inside of your Windows XP computer, there are two ways to do it. One way assumes that your computer is working properly, while the other assumes that your computer is malfunctioning, and you cant boot it up normally. Either way, accessing your computer through a command line is a straightforward process.

Instructions

    Command Line Access with a Working Computer

  1. Step 1

    Turn on your computer and log into Windows as you normally would.

  2. Step 2

    Wait for the operating system to load completely, then click on the "Start" button, then click on the "Run" button and type "cmd" (without quotes). Alternatively, click on the "Start" button, click on "All Programs," "Accessories" and "System Tools," and then click on the "Command Prompt" program choice.

  3. Step 3

    Wait for the command prompt window to open. When finished, close the window by typing "exit" and pressing the "Enter" key.

  4. Command Line Access When Windows Wont Boot

  5. Step 1

    Insert your original Windows XP CD into the computer and restart it. Choose the startup option that will allow you to boot from CD, then press any key to start the CD boot process.

  6. Step 2

    Wait for the boot loader to go through the automated loading screens, then press the "R" key once the process has completed. This will start the Recovery Console.

  7. Step 3

    At the command prompt, enter your username and password that you use to log on to Windows, then perform the operations you need to do. When finished, type "Exit," then press the "Enter" key to exit the Recovery Console. Restart the computer.

Read More..

How to convert iTunes music like mp3 to M4R iPhone ringtone

You may want to change your iPhone ringtone from time to time but do not want to pay $0.99 for every ringtone. In that case, make your own ringtone sounds to be a good idea. However, there would be another problem which is iPhone ringtone can just be the format of M4R. Then, what can you do? You may need a converter to convert various video or audio formats especially the most popular audio format MP3 into M4R.

With a MP3 to M4R converter, you may not only convert audio format into M4R ringtone, but also take soundtrack from video formats and convert them to ringtone. Check the following easy steps for converting MP3 to M4R.


Instructions
  1. Step 1
    input mp3 file
    input mp3 file

    Input your mp3 audio file
    open iSkysoft iPhone ringtone maker and drag MP3 file directly to the program for making ringtone.

  2. Step 2
    trim mp3 for iphone ringtone
    trim mp3 for iphone ringtone

    Trim MP3 Music to iPhone Ringtone
    Drag and drop the slide bar to appoint the start point and end point for your iPhone ringtone length. Alternatively, you can type exact time value into time-setting box. You can choose to preview the whole YouTube audio or video or just the trimmed part.

  3. Step 3
    generate iphone ringtone
    generate iphone ringtone

    Convert MP3 Music to M4R Ringtone
    After trimming, click Start button to generate the ringtone. The trimmed MP3 music would be converted into M4R ringtone and saved on ringtone category of your iTunes

Read More..