Thread: Quiz Help

Results 1 to 2 of 2
  1. #1
    Keroka0's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    1

    Quiz Help

    iam making like a simple quiz program using C# windows application


    i made 4 check boxes each check box have it's own answer

    and a label which show up the question

    and a progress bar

    i got 2 problems

    when check box more than once it keep at progress to the bar

    i need it to add it once

    and other problem

    wanna change question whenever any box checked

    i made it like this

    Code:
    if (checkbox1.checked = true;)
    label1.text = "New Question?"
    but when tried to repeat that code again to be
    Code:
    {
    if (checkbox1.checked = true;)
    label1.text = "New Question?"
    }
    {
    if (checkbox1.checked = true;)
    label1.text = "New Question Again?"
    }
    it gives the main question + New Question again and it skip New Question

  2. #2
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    if (checkbox1.Checked)
    {
    //codes
    }







Similar Threads

  1. [Help Request] Combat arms Vid help
    By djw111 in forum Combat Arms Help
    Replies: 4
    Last Post: 12-24-2011, 05:06 PM
  2. [Help Request] AFK Bot [help]
    By fet in forum Combat Arms Help
    Replies: 7
    Last Post: 04-28-2011, 03:17 AM
  3. [Help Request] Ajuda / Help
    By - Battery' in forum Combat Arms BR Coding Help
    Replies: 3
    Last Post: 04-22-2011, 07:15 PM
  4. [Help Request] Help my!
    By Windowns7 in forum Combat Arms BR Coding Help
    Replies: 2
    Last Post: 04-18-2011, 01:41 PM
  5. [Help] with a Quiz program in Visual Basic
    By shawnking in forum Visual Basic Programming
    Replies: 12
    Last Post: 03-31-2011, 02:40 PM