Results 1 to 11 of 11

Thread: Urgent Help request

  1. #1

    Thread Starter
    New Member
    Join Date
    May 2006
    Posts
    7

    Urgent Help request

    Hello all, I am working on a project in which I am supposed to design a test. Here are the instructions, Your program should open with a registration page (window/form) in which you display a general description of the test and the current date, and ask the user to enter his/her name. The user should not be allowed to begin the test without entering his/her name or identification. And once the user begins the test, he/she should not be allowed to leave the test until it has been completed; that is, the user should only be able to leave the test via the last/fourth and final form/window described below. The opening form should contain a button to move forward to the next form/window, such that when this button is clicked, the second form will be displayed.

    The second form should open and pose five True/False questions for the test-taker to answer. Make up five true/false questions about Visual Basic.NET for the test-taker to answer. Each True/False question should present two option buttons, one for true and one for false. (The True/False response buttons should be grouped in group boxes on the test form, or else the ten option buttons will only permit one choice among the ten.) Each True/False question should have a numerical grade value of ten (10) points for a correct answer, zero (0) points for an incorrect answer. The test-taker will answer each question by clicking the appropriate True/False option button selection. If there is not enough space on the form to display all five of the questions and answers at the same time, you may arrange the questions in any suitable fashion, but the test-taker must be able to change any of his/her answers prior to terminating the test. This form also should have two buttons, one to move back to the previous/first form and another to move forward to the next/third form.

    The third form shall pose five multiple-choice questions with at least four answer choices for each. Make up five multiple-choice questions about Visual Basic.NET for the test-taker to answer. Again, you should use option buttons for the answer choices and group them into group boxes so that each group of answers will function independently of the others. Each Multiple Choice question should have a numerical grade value of ten (10) points for a correct answer, zero (0) points for an incorrect answer. If there is not enough space on the form to display all five of the questions and answers at the same time, you may arrange the questions in any suitable fashion, but the test-taker must be able to change any of his/her answers prior to terminating the test. This form will require a button to move backward to the previous form and another to move forward to a next/last form. The button to move forward should read “Finish” because the test-taker should not be permitted to go back to any of the earlier forms once he/she arrives at the last/fourth and final form. (You might want to consider giving the test-taker a warning message before allowing him/her to proceed to the last/fourth and final form.)

    On the last/fourth and final form the program should display the test-taker’s name, the current date, a question-by-question summary list of the test results (the test-taker’s answer, the correct answer, and the numerical score for each question), and the total score for the test (maximum of 100 points). There is no need to store the test results in a file of any type. This form should have a button to terminate the test only. Once the test-taker has reached the last/fourth form, he/she should not be allowed to return to any of the previous forms.

    I have gotten to the 3rd form and am having trouble with the 4th form... Could someone please help me out.. I ahve attached the work that I ahve done so far... Please help me out if possible... Thanks
    Attached Files Attached Files
    Last edited by dadoc04; May 10th, 2006 at 05:36 PM.

  2. #2

    Thread Starter
    New Member
    Join Date
    May 2006
    Posts
    7

    Re: Urgent Help request

    anyone, with a suggestion??? LOL... thanks in advance

  3. #3
    Hyperactive Member OMITT3D's Avatar
    Join Date
    Mar 2006
    Posts
    368

    Re: Urgent Help request

    What is the problem just gather the information they entered and output it on the form.
    Dim frm1 as new frmRegistration
    frm1.textbox1.text to get the variables of what they entered etc.

  4. #4
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Urgent Help request

    I for one am not going to download other people's projects and then just go hunting to see if I can find an issue. You need to describe the nature of the problem you're having. Otherwise who knows how much time we'll waste trying to track it down. You haven't given any details at all. Is it that something doesn't work or you just don't know how to implement something? Also, I haven't checked but just in case I'll tell you that if your attachment contains any binary files you should remove them because it is against the rules of the forum to post binary files. Many new folk just ZIP and post their entire project without removing the bin and obj folders. I managed to post to the Codebank without removing the obj folder myself once.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  5. #5

    Thread Starter
    New Member
    Join Date
    May 2006
    Posts
    7

    Re: Urgent Help request

    ^^ thanks... I will delete and rezip the file

  6. #6

    Thread Starter
    New Member
    Join Date
    May 2006
    Posts
    7

    Re: Urgent Help request

    the problem I am having though, is that when the fourth form comes up, the names that are entered on the first form are to appear and for some reason I cant get them to.

    The other issue is that,

    "On the last/fourth and final form the program should display the test-taker’s name, the current date, a question-by-question summary list of the test results (the test-taker’s answer, the correct answer, and the numerical score for each question), and the total score for the test (maximum of 100 points)"

    Im not sure on how to do that, and am in need of assistance with it.

  7. #7

    Thread Starter
    New Member
    Join Date
    May 2006
    Posts
    7

    Re: Urgent Help request

    Quote Originally Posted by jmcilhinney
    I for one am not going to download other people's projects and then just go hunting to see if I can find an issue. You need to describe the nature of the problem you're having. Otherwise who knows how much time we'll waste trying to track it down. You haven't given any details at all. Is it that something doesn't work or you just don't know how to implement something? Also, I haven't checked but just in case I'll tell you that if your attachment contains any binary files you should remove them because it is against the rules of the forum to post binary files. Many new folk just ZIP and post their entire project without removing the bin and obj folders. I managed to post to the Codebank without removing the obj folder myself once.
    posted the updated version.... no BIN and OBJ folders

  8. #8
    Hyperactive Member OMITT3D's Avatar
    Join Date
    Mar 2006
    Posts
    368

    Re: Urgent Help request

    Did you read my post...? Also was it your zip where every file was read only -.-

  9. #9

    Thread Starter
    New Member
    Join Date
    May 2006
    Posts
    7

    Re: Urgent Help request

    Quote Originally Posted by OMITT3D
    Did you read my post...? Also was it your zip where every file was read only -.-

    yes, i had it on my laptop and i burned it to a CD because I was on my work computer... visual basic is only on my laptop though.. so when i burned the cd it did that..

    sorry about that

  10. #10
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Urgent Help request

    I suggest that you take a look at the Forms in VB.NET tutorial in my signature. It will explain how to share data amongst multiple forms, and many other things that you will need to know as well. It is an invaluable resource.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  11. #11

    Thread Starter
    New Member
    Join Date
    May 2006
    Posts
    7

    Re: Urgent Help request

    ^^ thank you

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width