Recent content by ttbspyder

  1. T

    C# random number 1-100, guessing game

    I figured it out, thank you, I needed to make my int for the random number as a global, THANKS!
  2. T

    C# random number 1-100, guessing game

    Thats one problem I am having, I have tried to move it into different sections of the code, but then my int number doesnt register inside the button click event in my if else statements, I am having trouble figuring out where it should go in order to work properly
  3. T

    C# random number 1-100, guessing game

    When I build and run, I enter a 12 in, thinking that the number has already been generated, however when I hit the submit guess button, the form generates a new random number therefore giving false output message. And yes this is a homework assignment, but when you ask your instructor and he...
  4. T

    C# random number 1-100, guessing game

    I have this code....but generating the random number is not in the right spot, can someone tell me where it goes...this runs with no errors, just doesnt run correctly using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using...