1962@Dr. No@Sean Connery@$425,488,741
1963@From Russia with Love@Sean Connery@$555,909,803
1964@Goldfinger@Sean Connery@$868,659,354
1965@Thunderball@Sean Connery@$966,435,555
1967@You Only Live Twice@Sean Connery@$720,388,023
1969@On Her Majesty's Secret Service@George Lazenby@$513,445,231
1971@Diamonds Are Forever@Sean Connery@$617,520,987
1973@Live and Let Die@Roger Moore@$785,677,477
1974@The Man with the Golden Gun@Roger Moore@$426,826,774
1977@The Spy Who Loved Me@Roger Moore@$666,367,656
1979@Moonraker@Roger Moore@$624,527,272
1981@For Your Eyes Only@Roger Moore@$481,005,579
1983@Octopussy@Roger Moore@$405,873,493
1985@A View to a Kill@Roger Moore@$316,186,616
1987@The Living Daylights@Timothy Dalton@$362,876,056
1989@Licence to Kill@Timothy Dalton@$271,586,451
1995@GoldenEye@Pierce Brosnan@$499,954,330
1997@Tomorrow Never Dies@Pierce Brosnan@$465,588,535
1999@The World Is Not Enough@Pierce Brosnan@$504,705,882
2002@Die Another Day@Pierce Brosnan@$546,490,272
2006@Casino Royale@Daniel Craig@$640,803,677
2008@Quantum of Solace@Daniel Craig@$586,090,727
The program looks like this:
http://imgur.com/Fzsoj

As you can see from the image above when you select an agent from the combo box and the agents data is shown in the text box.
my code so far...
Dim parser As New FileIO.TextFieldParser("Program 3 Data File\Program_3_Data.txt")
Dim rows As String()
parser.SetDelimiters("Year@Title@Actor@Inflation")
parser.TextFieldType = FileIO.FieldType.Delimited
Try
rows = parser.ReadFields
For Each Str As String In rows
EmployeeRecordsRichTextBox.Text = (Str)
Next
Do While Not parser.EndOfData
rows = parser.ReadFields
'Print the Results
For Each Str As String In rows
Console.WriteLine(Str)
Next
Loop
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
Any help on how to do this would be great thank you for your time.
This post has been edited by modi123_1: 13 November 2012 - 08:51 AM
Reason for edit:: fixed media tags

New Topic/Question
Reply




MultiQuote






|