Considering the code is the most important part of, well, coding.. it wouldn't help you to just give you the code you need.
Why don't you post up the code you've been working on so far for the assignment?
Which is the biggest problem here: I don't even have a code, and I don't even know how to start the code. I'm having enough trouble with the project layout to care about the code right now so if someone could help get me started (not asking to do it all for me, but that would be nice) then I could work things out from there.Okay, I've managed to code the exit button, so there's that, and I laid out the form itself and labeled everything appropriately, now all I need is the code.
The following things need to be coded: testScorePercentageBox, labScorePercentageBox, quizScorePercentageBox, finalExamPercentageBox, testScore1Box, testScore2Box, testScore3Box, labScore1Box, labScore2Box, labScore3Box, labScore4Box, labScore5Box, quizScore1Box, quizScore2Box, quizScore3Box, quizScore4Box, finalExamScoreBox, finalAverageLabel, letterGradeLabel, clearButton, and calculateButton.
I may not be able to remember how to code all of this right now, but I have an idea of what I want to do. The clearButton is to empty the boxes and the calculateButton will run the calculations and give me my final average and letter grade (which, needless to say, fill in the finalAverageLabel and letterGradeLabel respectively). For the final average I need to add up the grades by category and multiply by the number in the respective PercentageBox (e.g: add up the 3 test score boxes and multiply them by the testScorePercentageBox), then I need to add up the resulting numbers and divide by 4, giving me my final average (which should hopefully be in between 0 and 100). Now, how do I start about coding that?