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 2603 points

Matt

Favorite Answers21%
Answers85
  • CSS - How to fix these tow problems?

    I am working on a shoutbox and I have come to designing the online users section however these are two issues I am facing:

    1. The boxes overlap

    2. I need the bar to spread across the whole width

    Here is a screenshot: http://i62.tinypic.com/33fesgk.png

    The CSS code I currently use is:

    .sbonline {

    background: #D6ECA6;

    border-top: 2px solid #8DC93E;

    border-bottom: 2px solid #8DC93E;

    text-align: center;

    margin: 10px auto;

    padding: 5px 20px;

    font-weight: bold;

    }

    1 AnswerProgramming & Design7 years ago
  • Deleted my answer now I can't answer?

    Hi,

    So I accidentally deleted my answer to a question but now it won't even let me answer that question?? How can I answer it?

    6 AnswersYahoo Answers7 years ago
  • How old do you have to be to call apple tech support?

    Hi,

    So the title says it all really. I need to contact them about a pretty serious issue after discussing it within the online chat. Now I'm 15, will it be okay if I call them?

    Thanks.

    3 AnswersOther - Computers7 years ago
  • Visual Basic Picture Box resizes only half?

    Hi,

    So I am making a project for college and my loading form looks like this:

    http://gyazo.com/90238893fbe27ff1ae0cae070e22b7c5

    When you hover your mouse over either of the picture boxes it increases the size (so you know you are on it).

    I used the following code:

    Private Sub PictureBoxClientBack_MouseEnter(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBoxClientBack.MouseEnter

    PictureBoxClientBack.Cursor = Cursors.Hand

    PictureBoxClientBack.Height = 132

    PictureBoxClientBack.Width = 132

    PictureBoxClientPic.Height = 58

    PictureBoxClientPic.Width = 58

    LabelLoginStatus.Text = "Client"

    Private Sub PictureBoxClientBack_MouseLeave(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBoxClientBack.MouseLeave

    PictureBoxClientBack.Cursor = Cursors.Default

    PictureBoxClientBack.Height = 128

    PictureBoxClientBack.Width = 128

    PictureBoxClientPic.Height = 54

    PictureBoxClientPic.Width = 54

    LabelLoginStatus.Text = ""

    Now when the size changes it only seems to increase the size from the bottom right hand side. Is there any way to make it all increase?

    1 AnswerProgramming & Design8 years ago
  • What PC should I choose?

    So I have found these two all-in-ones and I like both however I have a dilemma.

    The first one:

    http://www.pcworld.co.uk/gbuk/desktop-pc-monitors/...

    looks really nice however lacks hardware wise compared to this one:

    http://www.pcworld.co.uk/gbuk/desktop-pc-monitors/...

    Which one do you think I should get? (Which one would you choose if it were you?)

    Thanks in advance

    3 AnswersDesktops8 years ago
  • Is there anyway to change forms in Visual Basic fluently?

    Hi,

    In Visual Basic I use the simple code me.hide() formwhatever.show(). My form is full screen and when it changes from the splash loading screen to the main form you always have a glimpse of your desktop behind. Is there any code to make the transition fluent and without seeing your desktop.

    3 AnswersProgramming & Design8 years ago
  • How can I do this...?

    Hi,

    I am working on a project with another developer, and we need to be able to share the files easily with each other. What is the best way for us to work on the project together without having to send files to each other. We want them to always be accessible to both of us? I thought of source-forge and GitHub but they either require staff approval or payed membership.

    4 AnswersOther - Internet8 years ago
  • Answer to this image verification?

    Call me stupid but I seem to be having trouble getting the following image verification right:

    Please enter the number in digits of the 3rd value |4711 |five |One Thousand and 1 plus 2 |-1303 |+1405

    What is the answer.

    2 AnswersOther - Internet8 years ago
  • What is the correct pronunciation of MySQL?

    My programming lecturer has told us that you should pronounce SQL like "Sequel" however browsing online I have seen many people argue by the way MySQL is written that it should be pronounced "My S-Q-L". What is the correct pronunciation? "My Sequel" or "My S-Q-L"

    7 AnswersProgramming & Design8 years ago
  • How can I move a picture box with the arrow keys in visual basic?

    Hi,

    I am making a maze game and I want to use a coloured picture box as the player. Here is a screenshot of the form:

    http://gyazo.com/be3fef8d312e97ce35a4a72aea70cdef

    The pink box is the one I would like to move. What code could I use to say if the user clicks either the up, right, left or down arrows then the box moves in that direction. Once per click?

    Thanks in advance.

    1 AnswerProgramming & Design8 years ago
  • How can I make a modern product page?

    Hi,

    I would like to make a page that displays to products (account upgrades) and I would like them to be in tables each comparing what features you unlock. Does anyone have any code I can use?

    Thank you in advance

  • How can I make pictures appear at different co ordinates?

    Hi,

    I am making a game in visual basic, where pictures appear and disappear and you get points for clicking on them. Now I can get them to appear and disappear however I am now facing the issue of them just appearing and disappearing in the same place. This is the code I have used to make a picture appear and disappear:

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick

    If PictureBox1.Visible = True Then

    PictureBox1.Visible = False

    Else

    PictureBox1.Visible = True

    End If

    End Sub

    What code can I use to make them do the same thing but they appear at different co ordinates, so people can't just sit and wait over the same one?

    Thanks in advance.

    2 AnswersProgramming & Design8 years ago
  • How to add a countdown timer in visual basic?

    Hi,

    I am making a game in visual basic where you click on pictures as they all popup and you get different points for each one, and when you miss you lose a life. However the only thing I now need to implement is a countdown from 60 seconds where after 1 minute the game stops. How can I add a 60 second countdown and make it visible to the user?

    Thanks in advance.

    1 AnswerProgramming & Design8 years ago
  • How to make this loading effect in visual basic?

    Hi,

    On my loading screen I have the default progress bar and the timer. How can I make 3 pictures flash one by one as the loading bar. I was thinking of sending the progress bar to the back so that you can't see it and then the pictures on top. However I do not know the code to make the pictures flash in and out 1 at a time.

    2 AnswersProgramming & Design8 years ago
  • How can I stop users from gaining score?

    Hi,

    I am making a game for my programming class in vB where you click start and pictures appear and disappear at different points and you earn different amounts of point for certain pictures. Now I have managed to code that but the only thing that is bothering me is that before the user clicks start to begin the game they can still get points for clicking the pictures. What code would I need to stop users from gaining points before they even start playing?

    Thanks in advance

    2 AnswersProgramming & Design8 years ago
  • I am creating a game (In Visual Basic 2010) for my computing class...?

    Hi, I am doing a GCSE programming course and we are starting with vB. In class today we created a game where you release a hot air balloon and it goes up into the air. When you clicked on the balloon you would get points, if you missed you would get those added up to and then we had to display the ratio. Now as I managed to do it pretty easily (I just got the grasp of it) he said if we could try and make a game for the next lesson where you have multiple pictures and once you press a button they all appear and disappear at different co ordinates.

    How would I go about making 8 pictures appear and disappear at different co ordinates and get different amount of points for each one?

    Thanks in advance.

    1 AnswerProgramming & Design8 years ago
  • What is the best free software repository script like Hotscripts?

    Hi, I would like to start a software repository site like hotscripts. What is the best free script that offers that?

    Thanks

    3 AnswersSoftware8 years ago
  • Where is the best place to learn how to code forum software...?

    I really want to be able to make my own forum software. Now I know the basics of php like arrays etc but I have never understood where to start when making forum software?

    So I guess my questions are:

    What is the best way to learn to code all the required languages to make forum software.

    and...

    Where do I start when making forum software eg: What file to start with etc?

    Thanks in advance.

    1 AnswerProgramming & Design8 years ago