Help! trying to create a VB 2010 program to look up state/abbreviation?
-
I am trying to create a program that looks up states or abbreviations from a .txt file all ready created I'm quite a beginner at this and I know I'm missing a lot of code so far. But I can't figure out the method to use in order to have the abbreviation or state show up based on a radio button selected and what's entered in a text box. I'm very lost! Help?! I have this: Option Strict On Imports System.IO Public Class Exam2 Private States As StreamReader Structure StatesStructure Dim Abbreviation As String Dim State As String End Structure Private Statesarray(56) As StatesStructure Private count, stateindex As Integer Private Sub LookUpButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LookUpButton.Click OpenFileDialog1.ShowDialog() count = 0 States = New StreamReader(OpenFileDialog1.Filename) Do While States.Peek <> -1 And AbbreviationRadioButton.Checked = True StateNameBox.Focus() Statesarray(count).Abbreviation = States.ReadLine count += 1 Loop States.Close() Do While States.Peek <> -1 And StateRadioButton.Checked = True Statesarray(count).State = States.ReadLine count += 1 Loop States.Close() count = count - 1 StateNameBox.Text = Statesarray(0).State StateAbbreviationBox.Text = Statesarray(0).Abbreviation End Sub Private Sub ExitButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExitButton.Click Me.Close() End Sub Private Sub ClearButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ClearButton.Click StateNameBox.Clear() StateAbbreviationBox.Clear() End Sub End Class
-
Answer:
You can read the file into an array and search the array. You can make all entries the same length, then read the file into a single string and search the string. You can open the file as a database http://www.connectionstrings.com/textfile
John Smith at Yahoo! Answers Visit the source
Related Q & A:
- Can someone help me find a study abroad program?Best solution by Yahoo! Answers
- How to create a simple counter program?Best solution by Stack Overflow
- Does the Linux Professional Institute Certification (LPIC) program have an advantage in trying to find a job?Best solution by Yahoo! Answers
- Can anyone help me create a screen name for myself?Best solution by nameideas.wordpress.com
- Does completing a social justice program in HS actually help your career prospects?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.