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 31,515 points

Kal-El2K8

Favorite Answers20%
Answers219
  • I need some help getting my usb wireless adapter to work!?

    I purchased this adapter: http://www.amazon.com/gp/product/B016Z1UBD8?psc=1&...

    When I installed the drivers and got it installed I can see that it is connected to my wifi and I ve got a pretty strong signal. But when I try to open a web page it says that I have no internet connection. I spent hours trying to research this and I can t get it to work. Please help!

    2 AnswersComputer Networking5 years ago
  • Help with my wordpress site?

    So I had a wordpress site through godaddy. I transferred an old domain from another registrar over to godaddy and changed it to my primary site. But I can't access wordpress through that site. What needs to be changed in my settings? What am I missing?

    1 AnswerProgramming & Design6 years ago
  • I have a 2002 Honda xr100r and I want to upgrade the suspension so I can hit bigger jumps. What should I get?

    I want more suspension than the dirt bike came with and I want to spend the least amount of money possible.

    1 AnswerMotorcycle Racing7 years ago
  • Can my son be expelled from school?

    My son takes Vyvanse for his ADHD. A couple of months ago we found out that he was taking extra pills when we weren't looking because he felt that it helped him more. We talked to him and told him how dangerous it was to take more medicine than what was prescribed. We locked the medicine in a safe. Since then we found out that he has been buying extra pills from a girl at his school. We have dealt with him but we feel that we need to address the issue with his principal. We feel that this girl is probably selling these pills to other kids and if something were to happen to one of them we wouldn't be able to live with ourselves if we hadn't told. We know that this will get this girl into a lot of trouble. What we don't know is what kind of trouble our son will get into. Will he get expelled if we admit to the principal that he bought these pills?

    3 AnswersSpecial Education7 years ago
  • Thoracic spine MRI marked T1=155?

    My wife had a thoracic MRI and they gave her a cd. One of the screen shots has an X on a vertebra and is marked T1=155. What does this mean?

    1 AnswerHeart Diseases8 years ago
  • Is there a way to get google Sketchup for free with no viruses?

    I want to get google Sketchup for my laptop, but I looked and it says it is $495 and I just don't have the money at the moment, although I need it very badly. Is there any way to download it for free, such as another website without worrying about getting a virus. PLEASE HELP!

    2 AnswersSoftware8 years ago
  • Now Playing Podcast Alien and Spielberg Reviews?

    The donation time is up and I missed out on getting the Alien and Spielberg retrospective series. They say that they've locked them up and will no longer offer them to anyone. Does anyone have copies that they can send me?

    1 AnswerMusic & Music Players9 years ago
  • How do I continue my game in Arkham Asylum without XBox Live?

    So I bought Batman: Arkham Asylum and made it about halfway. But when my XBox Live account expired I didn't have enough money to renew it. Is there a way to continue a game without XBox Live? If not, is there a way to start a new game and save it to the actual hard drive of the XBox so that I can play the whole thing offline? Please help.

    2 AnswersXbox9 years ago
  • Changing textbox to combo box with OleDb.OleDbConnection?

    I found a great tutorial that is helping me create a program for a friend of my wife. I've been able to connect an Access Database to a Visual Basic program to be able to scroll through the records. However, I want to replace the text box for the last name to a combo box to see a new record. The tutorial is pretty basic and I can't find a way to do this. Does anyone have and answer. Here is a link to the tutorial:

    http://www.homeandlearn.co.uk/net/nets12p4.html

    Thanks.

    2 AnswersProgramming & Design9 years ago
  • Changing Access data in a Visual Basic Application.?

    Hi. I'm working on a project for a friend of my wife. I'm about to get my Associate's Degree in programming and I took on this project as practice. It's a simple program, they just want to be able to look at a list of clients which I can do with Access and data sources. However, they want to be able to add and delete clients and I haven't learned how to make my application change the data in the access database. If the data is changed on the database itself will it automatically change in the data sources or is there something else that needs to be done? I'm hoping that someone can point me to a tutorial or something. Like I said, I'm sure its really simple but all they've shown me is how to add the data sources.

    Thanks.

    1 AnswerProgramming & Design9 years ago
  • what should you do when your hot?!?!?

    I just walked UP a hill 10 times, now I'm SUPER hot!!!!!! HOW DO I COOL DOWN WITHOUT AN AIR CONDITIONING UNIT????????????????????????????????

    1 AnswerOther - Health9 years ago
  • Help with Visual Basic C#?

    Here is my code. This is a form that calls a class and a subclass. I'm getting an error code on the last "else" statement between calling objects for my classes. I've been staring at this for days and can't move on to my next assignment until I solve it. Please help!!!

    using System;

    using System.Collections.Generic;

    using System.ComponentModel;

    using System.Data;

    using System.Drawing;

    using System.Linq;

    using System.Text;

    using System.Windows.Forms;

    namespace EX02_CarRentals

    {

    public partial class RentalForm : Form

    {

    public RentalForm()

    {

    InitializeComponent();

    }

    private void CloseButton_Click(object sender, EventArgs e)

    {

    Close();

    }

    private void CalculateButton_Click(object sender, EventArgs e)

    {

    int DaysInteger, BeginningOdometerInteger, EndingOdometerInteger, CarSizeInteger, DiscountInteger;

    if (LicenseTextBox.Text != "")

    {

    if (CompactRadioButton.Checked || MidSizeRadioButton.Checked || LuxuryRadioButton.Checked)

    {

    int.TryParse(DaysRentedTextBox.Text, out DaysInteger);

    int.TryParse(BeginningOdometerTextBox.Text, out BeginningOdometerInteger);

    if (BeginningOdometerInteger > 0)

    {

    int.TryParse(EndingOdometerTextBox.Text, out EndingOdometerInteger);

    if (EndingOdometerInteger > 0)

    {

    if (CompactRadioButton.Checked)

    CarSizeInteger = (int)CarSize.Compact;

    else if (MidSizeRadioButton.Checked)

    CarSizeInteger = (int)CarSize.MidSize;

    else

    CarSizeInteger = (int)CarSize.Luxury;

    }

    if (CorporateRadioButton.Checked || InsuranceRadioButton.Checked)

    {

    if (CorporateRadioButton.Checked)

    DiscountInteger = (int)Discount.Corporate;

    else if (InsuranceRadioButton.Checked)

    DiscountInteger = (int)Discount.Insurance;

    }

    //create an instance of the Corporate Class

    CorporateClass aCorpRental = new CorporateClass(BeginningOdometerInteger, EndingOdometerInteger, CarSizeInteger, DaysInteger, DiscountInteger);

    AmountDueTextBox.Text = (aCorpRental.getAmountDue()).ToString("C");

    else

    //create an instance of the Rental Class

    RentalRate ARental = new RentalRate(BeginningOdometerInteger, EndingOdometerInteger, CarSizeInteger, DaysInteger);

    AmountDueTextBox.Text = (ARental.getAmountDue()).ToString("C");

    }

    }

    }

    }

    private void DaysRentedTextBox_TextChanged(object sender, EventArgs e)

    {

    }

    }

    }

    1 AnswerProgramming & Design9 years ago
  • why does my cat HATE meee????

    well for some reason every time i pet my cat, kegan , he tries to scratch me! why?

    it's gotten to the point that where every time i walk by him he runs! why??????????????????

    2 AnswersCats9 years ago
  • what reading level is " Twilight "?

    I'm in middle school and I've seen the movies in order............ and now i wanna read the books......... what level is it? ( I'm a 5.3-6.3)

    5 AnswersBooks & Authors9 years ago
  • Computer completely locked up!!!?

    I have an Acer Aspire that I bought about 3 years ago. It's been a great computer. But a little while ago I couldn't get a couple of programs to start up so I restarted the system. When it came back on it showed me the Acer title screen and then stayed that way for about 30 minutes and then very slowly loaded Windows 7. It seems to be working alright now but I'm afraid to turn off my machine. I'm running my virus software but so far it hasn't found anything. Does anyone know what could be wrong with my computer?

    5 AnswersSecurity10 years ago
  • Help me with my Belkin router!!!?

    I have a Belkin Wireless G Router--2.4Ghz-802.11g. I lost the disc that came with it and I need to re-download the software. I went to the Belkin website and tried to download the drivers, but they downloaded in a format for VLC media player and it won't work. How can I get my router installed? Please help!

    2 AnswersComputer Networking10 years ago
  • What's wrong with this loop in Java?

    This loop is supposed to calculate month1 and then ask if you want to calculate month2 and then do it again. As of now it asks if you want to calculate month2, then when you put in "Y" the loop terminates. What am I doing wrong?

    //Loop while user wants to continue

    while ( repeat == 'Y' || repeat == 'y')

    {

    month ++;

    //Prompt for the amount of deposit

    input = JOptionPane.showInputDialog("Enter deposits for " +

    "month" + month);

    //Add deposit to total deposits

    deposit = Double.parseDouble(input);

    account.deposit(input);

    totalDeposits = totalDeposits + deposit;

    //Check for withdrawal from the account

    input = JOptionPane.showInputDialog("Enter withdrawals for " +

    "month" + month);

    account.withdraw(input);

    interest = account.calculateInterest();

    //Add interest to total interest

    totalInterest = totalInterest + interest;

    //Add interest to account balance

    account.deposit(interest);

    //Display the total deposits, total withdrawals, and total interest

    //and format as dollars

    input = JOptionPane.showInputDialog("Month: " + month +

    " \nDeposits " + dollar.format(totalDeposits) +

    " \nWithdrawals " + dollar.format(totalWithdrawals) +

    " \nInterest " + dollar.format(totalInterest) +

    " \nBalance " + dollar.format(account.getBalance()));

    //prompt user to continue

    JOptionPane.showInputDialog("Calculate Month " + (month + 1) + " (Y/N) ?");

    repeat = keyboard.nextLine().charAt(0);

    }

    2 AnswersProgramming & Design10 years ago
  • Anyone ever heard of a movie where a guy has a race change procedure?

    I'm not talking about where some white guy puts on a makeup to look like a black guy. This was a film that I saw a piece of a few years ago where a man was going to have surgery to become another race. The scene that I saw was where he was talking to a white man that had become black and loved it because he could go to restaraunts and get really good soul food without black people making fun of him. Has anyone heard of it?

    2 AnswersMovies10 years ago
  • Why aren't my pictures showing up on my website?

    I recently started a website that I wrote in HTML. Yesterday, I added a bunch of pictures. I put them all in my images folder and referenced the folder in my code just like I've been doing. The problem is that a huge chunk of my pictures are not showing. I'm posting my code below and you can see what happens by going to www.shawnwray.com, clicking on photos, and then clicking on "The Secret Bed And Breakfast". I know that I've done something wrong, but the code looks exactly like the ones that ARE working so I don't know what it could be.

    <html>

    <head><title>The Secret Bed And Breakfast Lodge</title>

    <h1 style="text-align: center; color:blue;">The Secret Bed And Breakfast Lodge</h1>

    </head>

    <body>

    <h2>This is the bed and breakfast that we stayed in. If you like what you see you can find more information <a href="http://www.bedandbreakfast.com/alabama-leesburg-th...

    <hr />

    <h3>This is the lodge. It was the main building where the office was. It also had the swimming pool, a few guest rooms, and the table that we all sat at when we had breakfast.</h3>

    <h3 style="text-align: left"><img src=images/lodge.jpg alt="lodge1" style="text-align: right"><img src=images/lodge2.jpg alt="lodge2"></h3>

    <h3 style="text-align: left"><img src=images/fireplace.jpg alt="fireplace" style="text-align: right"><img src=images/lodge3.jpg alt="lodge3"></h3>

    <h3 style="text-align: left"><img src=images/lady.jpg alt="lady" style="text-align: right"><img src=images/big_chair.jpg alt="big_chair"></h3>

    <h3 style="text-align: left"><img src=images/pool.jpg alt="pool" style="text-align: right"><img src=images/backdoor.jpg alt="backdoor"></h3>

    <hr />

    <h3>This is the cabin that we stayed it. It was called the treehouse. As you can see, it really does look like a treehouse.</h3>

    <h3 style="text-align: left"><img src=images/treehouse1.jpg alt="treehouse1" style="text-align: right"><img src=images/treehouse2.jpg alt="treehouse2"></h3>

    <h3 style="text-align: left"><img src=images/treehouse3.jpg alt="treehouse3" style="text-align: right"><img src=images/treehouse4.jpg alt="treehouse4"></h3>

    <hr />

    <h3>Here are some pictures of the view from the lodge and from our cabin. It was beautiful!</h3>

    <h3 style="text-align: left"><img src=images/view1.jpg alt="view1" style="text-align: right"><img src=images/view2.jpg alt="view2"></h3>

    <h3 style="text-align: left"><img src=images/view3.jpg alt="view3" style="text-align: right"><img src=images/view4.jpg alt="view4"></h3>

    <h3 style="text-align: left"><img src=images/sherri.jpg alt="sherri" style="text-align: right"><img src=images/shawn.jpg alt="shawn"></h3>

    <hr />

    <h3 style="text-align: center">This is the Kissing Tree. It's pretty self-explanatory</h3>

    <h3 style="text-align: center"><img src=images/kissing_tree.jpg alt="kissing tree"></h3>

    <h3>To go back to my blog page click <a href="blog.html">here</a>.</h3>

    </body>

    </html>

    1 AnswerOther - Computers10 years ago
  • Has anyone ever heard of a website where you rate and review short stories people have written?

    I posted a story that I wrote for my son on a website where you could review peoples stories for credits to unlock review given for your stories. I can't remember the name of the site, but I believe it started with A. I would really like to find this site, because the story has been lost and I would like for him to have it to keep.

    3 AnswersBooks & Authors10 years ago