Search results for query: *

  1. P

    writing to a sequential file

    for some reason nothing worked so i just wrote a new file to get around it. Any ideas how to make an array with an unknown amount of elements?
  2. P

    writing to a sequential file

    Alright, i have one.txt document that we will call sales. we have another that we call bonus. sales contains all of the salesperson's information such as name and total sales. Bonus is to contain the bonuses for the salespeople. with my program, you enter the bonus rate and it applies it...
  3. P

    More array troubles

    nm fill
  4. P

    Array help

    how to a use an array without knowing the number of elements?
  5. P

    String.Replace Help

    try .upper
  6. P

    Formating text

    I did a search on how to set the text property of label to bold, the responses didnt seem to help or appeared rather complicated. I took vb6 in highschool 4 years ago and remeber it as beign rather simple. Any help is greatly appreciated.
  7. P

    Help with Focus on ListBox

    thanks to both of ya.
  8. P

    Help with Focus on ListBox

    First of all, thanks for your time. My problem is that when i load my form, i need to have the focus set to a string in one of my list box's.
  9. P

    Reading Sequential access Files

    never mind, i found where to to loop
  10. P

    Reading Sequential access Files

    alright, i cleaned up my code a little and had some success. Now my problem is that when the streamreader runs, it is only reading the first record. I think i have to use a loop or manually but in a end of record delimiter, but im not sure how. Anyways, here is the code for both the write...
  11. P

    Leave application

    if your trying to exit the form, you would use me.close()
  12. P

    Reading Sequential access Files

    ill try that, but does the code look like it should work?
  13. P

    Reading Sequential access Files

    Alright everybody. I have to write a program which writes the store number, location, and store manager to a sequential access file. Im having no problem with this, but the program also has to be able to display a record based on the store number. When I run the program, i receive no errors...
  14. P

    quick question

    suppose i wanted to take a name from a text box and seperate the full name into strFirst and strLast, and the display the name reformated. I know that in order to display the name reformated i would do something like: dim strFirst as string dim strLast as string dim strName as string dim...
  15. P

    help with string manipulation

    Once I posted the code, i noticed the problem with my IF statement but none-the-less you helped me out alot. thank you very much.
  16. P

    help with string manipulation

    What i have looks somewhat like what you posted, but it appears you have 2 for next statements? also, im having trouble with my if statement. When i compile .net doesnt report any errors, but when i go to do the calculation, my if statement doesnt work. Thanks, Steve Private Sub...
  17. P

    help with string manipulation

    Hello everybody, Im taking a vb.net class and im having a few problems with a prime number project. i can determine if the number is prime, but im struggling with displaying the divisors of non prime numbers. Anyone have any ideas?
Back
Top