Search results for query: *

  1. D

    Text file Problem

    After i split this in to Arrarys i can show (strSplit(0)) in a Combobox, "Spa","2","343" "Sepang","1","545" "Manama","6","358" "Melbourne","4","482" "Imola","5","749" How do i show Spa's Laps(which is the third Split (343)) in a textbox or lable or if i select Sepang from the...
  2. D

    Need help in setting up a database

    No i dont know how to write an sql Insert statement, but i will look around and see what i can find out about it. Thanks D:)
  3. D

    Need help in setting up a database

    Can anyone help? :)
  4. D

    Need help in setting up a database

    Ok Ok sorry if I confused anyone :) thanks for that I have greated a new table “Results” my next question is if I create a form with say a list box which is bound to the driver table, then I have 2 small textbox’s which I use to put the race results in (position and points), how do I save...
  5. D

    Need help in setting up a database

    Hi people I’m using VB 05 which has SQL built in and I would like to set up a database which holds Formula 1 stuff e.g. Table 1 Driver names Team Nationality DOB Points scored Points needed to win championship Table 2 Team Names 1st Driver 2nd Driver...
  6. D

    Text file Problem

    Thanks Soofi :) :)
  7. D

    Text file Problem

    Thanks Soofi I get it now, but could you explane why this code works? i went through the help file in VB and found i had to use the "...For i = 1 -22 to UBound() but i dont inderstand why, What is UBound and what is the point of "i" Dim i For i = 1 - 22 To UBound(strSplit)...
  8. D

    Text file Problem

    Thanks for that this is what i have so far: Dim Driver As System.IO.StreamReader = New System.IO.StreamReader("C:\Racing\Drivers.txt") Dim strSplit() As String strSplit = Strings.Split(Driver.ReadLine, ",") 'splits on the comma Array1.Add(strSplit(0))...
  9. D

    Text file Problem

    Great, thanks but can we get back to the first question please. im not using a database im using text files. TA:)
  10. D

    Text file Problem

    Not at all but I’m not sure how databases work, from talking to people about the project they seem to say that Databases need constant maintenance and I don’t want to keep maintaining the program, I just want to use it. If however you think a database would work better could you explain how...
  11. D

    Text file Problem

    Hi Guys This is driving me nuts, could someone please help me….? I have a lot of Text files with lots if info on them, they are all set out like this: "Spa","2","343" "Sepang","1","545" "Manama","6","358" "Melbourne","4","482" "Imola","5","749" What would be the...
  12. D

    Extracting from a Textfile

    Hi guys Im just starting out in VB.Net and my first program is to store customer info in a textfile, I have managed to write the code to save the file, the file contains all the info on 1 customer, each bit of info is on a separate line in the textfile. My problem is this how do I...
  13. D

    Filenames in a listbox (From a newbee)

    Hello I’ve just started learning VB.Net and I’m trying to write my first program. The program is to organize customer names, address, products and stuff. I’m sure that a database would be easier, but I would like to use text files to store the information. The program creates a new...
Back
Top