Posted by Lee on Friday, October 22, 2010 at 6:02pm.
Here are some visual basic programming tutorials that may help you:
http://search.yahoo.com/search?fr=mcafee&p=viual+basics+program+tutorial
Sra
It's been years, so I forgot a lot. Should this:
If state <> "" Then
Say this:
If state = "" Then
I honestly forget. Let me know if that works.
Thank you both. I'll give the line a try and report back...
No I'm afraid the If statement did not work. I'm trying Case Else. But I think all my Select End and Select Case's are the cause.
I'm just waking up, so really tired. I will try to look later, but it is a hard program to follow mentally. Haha
I hope someone can help. Check back again in a while.
So do I. This program is a little difficult. Thank you for your help...
Declare these under form.
Dim Mott As String 'To type in which State Motto
Dim Flower As String 'To type in which State Flower
Dim NickName As String 'To type in which State NickName
First Button code.
Private Sub btnmotto_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnmotto.Click
Motto = CStr(InputBox("Enter a state: California, Indiana, Mississippi, North Dakota, and New York."))
Select Case Motto
Case "California"
txtinfo.Text = "California state motto is 'Eureka'."
Case "Indiana"
txtinfo.Text = "Indiana state motto is 'Crossroads of America'."
Case "Mississippi"
txtinfo.Text = "Mississippi state motto is 'By valor and arms'."
Case "New York"
txtinfo.Text = "New York state motto is 'Ever Upward'."
Case "North Dakota"
txtinfo.Text = "North Dakota state motto is 'Liberty and union, now and forever, one and inseparable'."
Case Else
txtinfo.Text = "Category is not listed."
Thank you Matt and helper. Your help was very useful. I was able to get this program operational. The misstake I seem to have made with putting nested statements in. I had to take out some of the End Selects and change my operation from <> to =.
So what is the full answer to this problem cause I am doing the same thing right now
Related Questions
Programming - This is a visual basics program issue. The problem is: Table 4.7 ...
Programming - Write a program that would calculate and display the results for ...
Programming - Write a pseudocode program that asks the user for an integer ...
Computer Visual Basics 2008 - This questions is from Chapter 5, #54) Write a ...
Programming - I need your help to write a program using visual basic 2010 for ...
computer science - in one the chapter 3 programming challenges you were asked to...
Programming (CSI Programming Logic and Design) - Create a program that outputs a...
programming 2 - Write a program that inputs a word representing a binary number...
Programming (CSI 150 Programming Logic and Design) - Create a program that ...
programming - I am having trouble writing this program for java. can anybody ...
For Further Reading