Search:

Type: Posts; User: DRest608

Search: Search took 0.02 seconds.

  1. Re: Button still able to be clicked if held outside of it?

    WOW are you kidding me!? THANK YOU! can't believe i missed that!
  2. Button still able to be clicked if held outside of it?

    So I have a button that if you click on it and hold, and then go off of the button while still holding down...then release outside of the button, it still clicks the button. How can I make that not...
  3. Replies
    5
    Views
    1,190

    Random Names No Repeating

    I have a button that when clicked on, I want it to choose a random name from 8 names located on another form (form1)

    How do i get it so when i click on another button to choose another name, that...
  4. Replies
    11
    Views
    1,061

    Re: Help With Key Press Commands

    Now no keys will work when i press them. i don't understand it at all
  5. Replies
    11
    Views
    1,061

    Re: Help With Key Press Commands

    This seems okay to me but it won't work so obviously something is off....i feel like i'm getting closer and closer though





    Dim P1Answered As Boolean = False
    Dim P2Answered As...
  6. Replies
    11
    Views
    1,061

    Re: Help With Key Press Commands

    Dim Variable As Boolean = False

    Private Sub GameOverSoundsQ1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.KeyPreview = True
    End Sub


    Private Sub...
  7. Replies
    11
    Views
    1,061

    Re: Help With Key Press Commands

    What if i have another player answer the same question? how can they input their answer in the same Case? Once player one enters their Key, the second can't type anything.
  8. Replies
    11
    Views
    1,061

    Re: Help With Key Press Commands

    This is my new code (i am doing one player at a time)....still won't work though. I hit "1" for answer A...then i can hit "Q" for answer B and it messes it all up still



    Private Sub...
  9. Replies
    11
    Views
    1,061

    Help With Key Press Commands

    I have 2 players that see a trivia question. I want to make it so that player one has a set of 4 keys to press for A, B, C or D. Same for Player 2. But my code has it that you can override after the...
  10. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    Okay so I finally got the scores to order correctly but now i need to get the player name textboxes to go with their scores. what would i need to do in order to achieve this?
    This is my working...
  11. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    I also tried this but again...NOTHING lol...i can not figure this out its driving me mad.



    #Region "variables"
    'Dim score As Integer
    Dim player1score As Integer = 0
    Dim...
  12. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    Ive been looking around online and found an example of what i think i should be doing but again, it won't work...using this code it gives me the error of
    "Unhandled exception has occured in your...
  13. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    the blue lines also disappear if i delete the (number) after the P?Score.Text.....should i not have those?
  14. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    hmm interesting....i have no idea how that could be possible...when i was using CInt with the names, they didnt' have the blue lines
  15. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    Really appreciate the help dday! unfortunately it is still not working when i followed your example. This is what i understood to do .....the score.text are all underlined blue which means it won't...
  16. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    Private Sub RankScoresBtn_Click(sender As Object, e As EventArgs) Handles RankScoresBtn.Click
    Dim score(7) As Integer
    score(0) = CInt(P1Score.Text)
    score(1) =...
  17. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    Ok I made it simpler but still can't figure it out. I'm no longer working with 2 forms. I just have to figure out how to sort the leaderboard. I made a rank score button now but this still isn't...
  18. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    i have this so far i think:

    Private Sub P1Score_TextChanged(sender As Object, e As EventArgs) Handles P1Score.TextChanged
    Dim score(7) As Integer
    score(0) =...
  19. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    would you know of any kind of tutorial i could follow to get more of a hang of this at all?
  20. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    and this is the leaderboard

    124837


    Public Class R7Gauntlet

    Private Sub ChallengerBtn_Click(sender As Object, e As EventArgs) Handles ChallengerBtn.Click
    Dim R7Gauntlet As...
  21. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    here is the scoreboard image and code:
    124835


    Public Class Scoreboard

    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    PlayerOne.Clear()
    ...
  22. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    and what sub would i put that code under? each player NAME text?

    Private Sub PlayerOneRank_TextChanged(sender As Object, e As EventArgs) Handles PlayerOneRank.TextChanged
    Dim highscores(7) As...
  23. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    So which form would i enter this code on? my scoreboard form or high scores form?
    and would it be
    Dim highscores(0) As Integer
    PlayerOneName.Text = PlayerOneScore.Text
    or am i completely off?
  24. Replies
    26
    Views
    5,191

    Re: Trying to Make A High Score List

    First off thanks for the response dday9!
    Secondly, I'm kinda new to coding :confused: so I'm not really sure how to create an integer array...would you be able to help?
  25. Replies
    26
    Views
    5,191

    Trying to Make A High Score List

    I am trying to take the 8 players scores from a scoreboard and have them transfer to rank them in a top scores from highest to lowest in a new window.

    On the scoreboard I have:
    PlayerOneName.Text...
  26. Replies
    3
    Views
    517

    Re: Keyboard Command Help

    Private Sub P1Abtn_Click(sender As Object, e As EventArgs) Handles P1Abtn.Click
    P1Bbtn.Visible = False
    P1Cbtn.Visible = False
    P1Dbtn.Visible = False
    P1XBtn.Visible...
  27. Replies
    3
    Views
    517

    Keyboard Command Help

    I am making a trivia game and i am trying to make the A, B, C, and D keys reveal the letter that is selected. So if the player types A then the picture of the A answer will highlight. How would i go...
  28. Re: Need Help With (If Button Is Clicked....)

    This is my coding as of right now but theres way too much going on i think

    Public Class GameOverSoundsQ1

    Private Sub FinishedBtn_Click(sender As Object, e As EventArgs) Handles...
  29. Need Help With (If Button Is Clicked....)

    So I am doing a trivia game and I have multiple choice A B C and D. So the players read the question, and then click on the letter they think is the correct answer. After all players made their...
  30. Replies
    12
    Views
    1,408

    Help With Object Oriented VB

    I'm trying to condense my manifest size and was told to learn object orienting...but i have no idea what that even means. Could anyone tell me how I would do that with this:

    I'm using it to open...
  31. Re: Getting Error Message Insufficient Memory to Debug Visual Studio Pro

    yea there are alot of images in this game.
    my specs are:
    processor: intel core i5-3230M CPU 2.60GHz
    RAM: 6GB (5.88 usable)
    System type: 64-bit OS x64-based processor
  32. Re: Getting Error Message Insufficient Memory to Debug Visual Studio Pro

    I fixed the problem for like an hour until it happened again and now i can't fix it anymore. If i used a new program like SharpDevelop, would this still happen?
  33. Getting Error Message Insufficient Memory to Debug Visual Studio Pro

    So everytime I hit Start to Debug my game it keeps giving me the message: Problem generating manifest insufficient memory to continue. It used to say that but it still worked when i went into the...
  34. Replies
    5
    Views
    912

    Re: Need Help With Shuffling Cards

    Thank you too!!! Really appreciate the help!
  35. Replies
    5
    Views
    912

    Re: Need Help With Shuffling Cards

    HOLY CRAP!!! Thanks SO much!!!! That fixed the problem! It all works now!
  36. Replies
    5
    Views
    912

    Need Help With Shuffling Cards

    So I have 18 face down cards i want to shuffle to different locations. There are 3 rows of 6. I have it working except the fact that 5 cards keep going behind other cards, leaving 5 empty spaces!...
Results 1 to 36 of 36



Click Here to Expand Forum to Full Width