Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Lv 2422 points

Cyberian

Favorite Answers20%
Answers75
  • Can i convert a pencil sketch picture back to its normal photo?

    I have been searching a software /app to convert pencil sketch picture back to its normal photo. I have found photos to sketch converts but couldn't find what I wanted.

    Can anyone help?

    4 AnswersDrawing & Illustration3 years ago
  • How can I service my Suzuki Alto VXR 2007 Air Conditioner?

    I have Suzuki Alto VXR 2007 Royal Blue color. It seems that my air conditioner in the car is not working properly and it is not that chilling as I want it to be.

    Please help how can I service the air conditioner system in the car...

    3 AnswersSuzuki4 years ago
  • How can we receive real time data from UDP server and display in browser? Using php or java?

    I am working on a project and I want to receive real time data from UDP server and want to display it on a browser. Actually making a web application.

    Please help

    2 AnswersProgramming & Design5 years ago
  • Data doesn't update on input field after form submission, while database is updated.?

    I have made this piece of code to manage counter cash on a shop, the user enters the new balance in the input field and presses the enter button. The code updates the database but it does not update the browser input field accordingly. We have to refresh the page (Using F5 or relaod button in the browser) in order to see the updated cash value. Please help me to enter the new value and the page displays the new updated value instantly.

    my code:

    <?php

    $cash_query = mysqli_query($link,"SELECT * FROM aks_counter");

    while ($counter_row = mysqli_fetch_array($cash_query))

    {

    $counter_cash = $counter_row['counter_cash'];

    ?>

    <div class="container">

    <div id="counter_cash">

    <form method="POST">

    <input type="number" name="counter_balance" class="input_field" value="<?php echo $counter_cash; ?>">

    <input type="hidden" name="counter_hidden_id" value="<?php echo $counter_row['id']; ?>">

    </form>

    <?php

    }

    $counter_id = $_POST['counter_hidden_id'];

    $counter_balance = $_POST['counter_balance'];

    mysqli_query($link,"UPDATE aks_counter SET counter_cash=$counter_balance WHERE id=$counter_id");

    ?>

    &emsp;

    <h2>Counter Cash</h2>

    </div>

    </div>

    2 AnswersProgramming & Design6 years ago
  • In team viewer the TurboC++ screen is not visible?

    I am connecting two computers with Team Viewer, one laptop with Windows 8.1 installed and the other PC with windows xp.

    When I run team viewer i want to see the screen of my WindowsXP PC which i get very good, but when i run TurboC++ on PC i dont see its screen on my laptop via teamViewer ...

    Please help why i cannot see the screen ... all I see is a black screen or only desktop

    1 AnswerSoftware6 years ago
  • Can anyone explain this C++ code?

    #include<stdio.h>

    #include<conio.h>

    main()

    {

    int x=2,y=2;

    while(x>=5,y>=3)

    {

    printf("\n%d\t%d",++x,++y);

    }

    getch();

    }

    1 AnswerProgramming & Design7 years ago
  • Name all the movies in which guy sniff woman/girl hair ?

    I want a list of movies with scenes of guy sniffing woman/girl hair. I really want to have this because I have a thing for hair smell ....

    3 AnswersMovies7 years ago
  • DELL E6500 bluetooth not detecting?

    I have DELL E6500 Laptop

    Processor: 2.53GHz Intel Core2Duo

    RAM: 4GB

    I have on the keyboard Bluetooth indication and I have downloaded driver from the DELL support center for it and installed but it does not work, neither the indication is lighting up. Please let me know whether I have to install something else to enable bluetooth on my Laptop.

    OR

    Just tell me the procedure to enable the bluetooth on my laptop from the start.

    3 AnswersAdd-ons8 years ago
  • Drivers for Fujitsu Siemens p17-1 64bit?

    Can anyone help me in finding drivers for my Fujitsu Siemens Monitor P17-1 64bits, I am using Windows 8 ... Please give me links ... I need help

    2 AnswersAdd-ons8 years ago
  • Unable to boot system by USB flash drive?

    I have DELL Optiplex GX280 Intel P4HT 3.06GHz, whenever I restart the system with a bootable USB flash drive plugged in, the screen shows the message "DEVICE NOT READY", I have plugged into all the USB slots but result is the same, sometimes it does not go to boot at all from the USB. I have the feature of USB boot enabled in BIOS, can someone help me ....

    3 AnswersAdd-ons9 years ago
  • Please help in the following C code?

    Is this legal to evaluate integers through a logical statement in C. Please check the program and tell me what actually happened in the code:

    #include<stdio.h>

    #include<conio.h>

    void main()

    {

    int a = 5;

    int b = 10;

    int c = 15;

    int output;

    output = a || b && c;

    printf("%d",output);

    getch();

    }

    5 AnswersProgramming & Design9 years ago
  • Windows 7 drivers for DELL Optiplex GX280?

    I have DELL Optiplex GX280 Pentium4 HT 3.06 1.0GB DDR-II, I installed Windows 7 but there was a problem in the display drivers that the drivers could not be installed, rest of the drivers were installed and working OK, I want to know are there display drivers available for Windows 7 for my system??? where could I get it??

    On the DELL website I could not find any drivers for my system of Windows 7 ... I need help

    2 AnswersAdd-ons10 years ago
  • Which operating system is most secure?

    I am a user of WindowsXP and I think itsnot very secure, which operating system is more secure than windows and more user-friendly?

    5 AnswersSecurity1 decade ago
  • What is the SQL query to populate the primary key?

    I have a table in MySQL server which has a primary key of "id" which is INT type and will increment automatically ... when i run this query on it:

    "INSERT INTO job_seeker VALUES ('','Xxxxx','Yyyyy','Zzzzz',)

    i leave the first value blank ... and it gives me the following error:

    VALUES CANNOT BE ADDED Out of range value adjusted for column 'Job_Seeker_Id' at row 1

    if i put any number in it it just takes it the first time and then after that i have to change the number in my code...

    how to populate it so that it takes the number all by itself and increments it in every entry?

    Why out of range?

    I am using phpmyadmin and when I INSERT values from phpmyadmin it takes leaving the primary key blank and it increments too. why?

    I need to populate through my web application.

    1 AnswerProgramming & Design1 decade ago
  • How to make relations in table in phpmyadmin?

    I am making a software project in which i am making a web application. in it there is a registration, login and make profile. I want to relate these different tables in phpmyadmin, I have been trying to relate all these by foreign keys but failing... please tell me a very easy way to relate tables so that the person logging in puts the profile information and it goes into his/her profile and when he wants to update or delete the respective profile is deleted ... and if he wants to give other information through other tables the respective information is added. Please help as i cannot relate the tables in phpmyadmin ...

    2 AnswersProgramming & Design1 decade ago
  • How to handle dropdown list in php?

    Please tell me how to handle this code for the drop down list.... i want to use the drop down list to print something or to choose the opetion that will direct me to the option...

    Please help

    I have this code below ... it checks the drop down list with the CHECK button and then prints whatever option is selected... i hope its the correct code.

    This code doesnt accept anything and does not print anything.. please tell me whats wrong with this code and how can I modify to make this thing work...

    <?php

    $employer = $_POST['employerOpt'];

    $jobseeker = $_POST['jobSeekerOpt'];

    $check = $_POST['check'];

    if($check)

    {

    if($employer)

    {

    echo "<h3>EMPLOYER SELECTED</h3>";

    }

    else if($jobseeker)

    {

    echo "<h3>JOB SEEKER SELECTED</h3>";

    }

    }

    ?>

    <head>

    <title></title>

    </head>

    <body>

    <h2>We are cheking the drop down menu</h2>

    <form action = "test.php" method = "POST">

    <select name="selectReg" id="selectReg">

    <option selected>Choose One</option>

    <option value="employerOpt"> Employer</option>

    <option value="jobSeekerOpt">Job Seeker</option>

    </select>

    <input type = "submit" value = "Check" name = "check">

    </form>

    </body>

    </html>

    4 AnswersProgramming & Design1 decade ago
  • How to update Avira AntiVir Personal from a VDF file?

    I want to update my Avira Antivir Personal from a VDF file which i have downlaoded. This is a "ivdf_fusebundle_nt_en.zip" file which I unzipped. I don't know how to install or put these files in the Antivirus because there is no provition in the configuration panel. I tried to paste it in Program Files/Avira it does not allow me.

    Please help me in this regard my Antivirus doesnt get updated since Jan 31, 2010.

    5 AnswersSecurity1 decade ago
  • How can I call a function of a php file from a submit button on an HTML page?

    I am working on a Log In page of a php site, I am trying to make it Object Oriented and i have made classes for that.

    The user interface is in another file of html and I want to use the SUBMIT buton of the HTML file to call the function of my php class to log in .. i have written all the code for log in in the php class file .. please help me i am in a serious need

    4 AnswersProgramming & Design1 decade ago
  • Anyone know SpeedFan 4.32? help me with it please...?

    i have a problem in my pc that when an application hang up the cpu fan runs very fast. I searched the internet for a software to control the cpu fan speed. I found SpeedFan 4.32. I installed it, it shows many things that i am not sure of what they are, e.g.:

    CPU

    Local

    Remote 2

    HDD 0

    HDD 1

    what are these: Local & Remote 2?? I see when Remote 2 temperature becomes more than 65 Celcius the fan runs v v fast and it shows a flame indication with the it ..

    I have hp-compaq deskpro 2.8GHz P4

    it has a gret problem with the fan speed

    1 AnswerOther - Hardware1 decade ago