What progress did you make on your solution?
Today i worked on step 3. I answered the questions and finished the exercise 3. Just learning how to use Select Case statement and putting it into use. Next class i need to finish exercise 4 and finish step 3.
Tuesday, October 30, 2007
Tuesday, October 23, 2007
y
Provide yourself of an example of a code?
You can use nested if...then...else statements to help you while you are programming.
If intGuess = intSn Then 'Correct
Me.lblMessage.Text = "YOU GUESSED IT"
Else
If intGuess < intSn Then
Me.lblMessage.Text = "Too Low" 'too low
Else
Me.lblMessage.Text = "Too High" 'too high
End If
Then it will display different things
You can use nested if...then...else statements to help you while you are programming.
If intGuess = intSn Then 'Correct
Me.lblMessage.Text = "YOU GUESSED IT"
Else
If intGuess < intSn Then
Me.lblMessage.Text = "Too Low" 'too low
Else
Me.lblMessage.Text = "Too High" 'too high
End If
Then it will display different things
Monday, October 22, 2007
I read from Nick' Kurt Warner book All Things Possible which he wrote by himself. I just started so it talked about how he won the Superbowl against the Titans and was the MVP. Kurt grew up in a divorved family and was kinda poor. He talked about how his life was like when he was a kid. That was as far as I got.
Thursday, October 18, 2007
Provide yourself with a example to jog your memory?
All the less than and those signs can help you when writing your code.
Operator Meaning
= Equal to
< Less than
<= Less than or equal to
> Greater than
>= Greater than or equal to
<> Not equal to
this is how it should look in code
If intGrade >= 70 Then
Me.lblgoodjob.Text = "GOOD JOB"
Else
Me.lblgoodjob.Text = "GO study more"
All the less than and those signs can help you when writing your code.
Operator Meaning
= Equal to
< Less than
<= Less than or equal to
> Greater than
>= Greater than or equal to
<> Not equal to
this is how it should look in code
If intGrade >= 70 Then
Me.lblgoodjob.Text = "GOOD JOB"
Else
Me.lblgoodjob.Text = "GO study more"
Monday, October 15, 2007
Friday, October 12, 2007
Thursday, October 11, 2007
Wednesday, October 10, 2007
Tuesday, October 9, 2007
What progress did you make on your solution?
Today I worked on my project and tried to finish. I wrote the code and inswerted the picture for all of them. I got to the thrid joke and only have 2 more to go. Next class i need to finish inserting the code for all of the rest of the jokes. then i can get a good grade.
Today I worked on my project and tried to finish. I wrote the code and inswerted the picture for all of them. I got to the thrid joke and only have 2 more to go. Next class i need to finish inserting the code for all of the rest of the jokes. then i can get a good grade.
Monday, October 8, 2007
Thursday, October 4, 2007
Wednesday, October 3, 2007
how did you go about testing your solution? What were the results?
To test my program i would run it to see if there were any errors. If there were then I would look at the code and see if anything i may have done wrong. If there is then i would fix it and continue. After testing it the program worked after a few times of testing and changing.
To test my program i would run it to see if there were any errors. If there were then I would look at the code and see if anything i may have done wrong. If there is then i would fix it and continue. After testing it the program worked after a few times of testing and changing.
Tuesday, October 2, 2007
Monday, October 1, 2007
Subscribe to:
Posts (Atom)