Search results for query: *

  1. anybloodyid

    Resolved Store a variable

    OK John, I'll go back to it and take another look to see if I can get the Tag property to work.
  2. anybloodyid

    Resolved Store a variable

    I used TabIndex questionLabel.TabIndex = tableNumber * questions(randomNumber) Then checked with If secondClicked.Text = firstClicked.TabIndex Then
  3. anybloodyid

    Resolved Store a variable

    Thanks for the reply but although the tablenumber * randomNumber might = 16 the tag still = Nothing.
  4. anybloodyid

    Resolved Store a variable

    Hi and thanks for looking, I followed a tutorial at microsoft on making a simple matching game after I finised I then started to adapt it so I could have a matching times table. I have two TableLayoutPanels the first is populated with the questions 2 x 2 = etc The second is populated with the...
  5. anybloodyid

    Random number Selector

    Thanks John, Long time since I was last here will look at the second option 'Create a list of all possible values, select one by index at random and remove it from the list.'
  6. anybloodyid

    Random number Selector

    Hi and thanks for looking, I have a button that selects a random number from 30 numbers how do I make sure the same number is not picked again. My thoughts, Randomise a List box then remove the number that's picked before repeating. Or an array, same idea remove number after it has been randomly...
  7. anybloodyid

    Missing design form?

    All sorted, clicked on the menu item (View) then Design and up it popped.
  8. anybloodyid

    Missing design form?

    Thanks for the reply will give it a go.
  9. anybloodyid

    Missing design form?

    Hi and thanks for looking. I created a project which is working but now when I load the project the designer window does not appear. I can run the project and it shows and works but I now want to add to it. I think the problem was that I renamed the folder where the project was but I have looked...
  10. anybloodyid

    Question Textbox.text to Label

    Thanks will go and take a look at DataGrridView tutorials
  11. anybloodyid

    Question Textbox.text to Label

    I understand what you are saying but after entering player names I move on to enter player scores for each round, there could be 10 or more rounds to each game. After each round another label shows total score. Player1.name Player1.roundscore Player1.totalscore Player2.name...
  12. anybloodyid

    Question Textbox.text to Label

    Hi John, Thanks again for taking the time to look and answer. Would that idea not just keep filling in each of the player name labels and then the score labels round and round? What I was after was to fill in player name labels and then move to score labels ie player label1 player label2...
  13. anybloodyid

    Question Textbox.text to Label

    I have a follow up question with the code given to me last time. Each Label gets a name from the textbox but how do I then get the textbox to start inputting scores in to the next 4 labels Lbl_roundscore1 Do I need a another if statement inside the one I have eg if number = 4 start placing text...
  14. anybloodyid

    Question Textbox.text to Label

    Thanks for that.
  15. anybloodyid

    Question Textbox.text to Label

    Hi John Thanks for the reply a couple of further questions please 1)Does using static keep the variable local which is better than using global? 2) Could you explain this line I understand what it does adds 1 to counter but what are the - 1, 0 doing?
  16. anybloodyid

    Question Textbox.text to Label

    Hi and sorry if this is posted in wrong place only just joined. I want to send input from a textbox to 4 labels, so enter text hit return input goes to label1, enter more text input goes to label2 etc The code below is how I worked it out but I feel sure there must be a better way, is there...
Back
Top