Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: VBBro
  • Order by date
  1. VBBro

    Java beginner - I am see some crazy errors with file reader

    I can't get the package thing to work but this code works great in DOS! Thanks for you help good people! ------------------------------------------------------------ //package practice; import java.io.*; import java.util.*; public class SortF { public static void main(String[] args) {...
  2. VBBro

    Java beginner - I am see some crazy errors with file reader

    import java.io.*; import java.util.*; public class SortF { public static void main(String[] args) { try { BufferedReader in = new BufferedReader( new FileReader("FFile.txt")); String s2 = new String(); s2 = in.toString(); in.close(); String[] F = s2.split(" "); System.out.println(); for(int...
  3. VBBro

    Searching for strings within your strings...

    I finally produced a working copy of the .NET program I have been working on but when I copy the .exe to another computer using Win 2000, it says, "Not a Valid Win32 App".... Apparently, I just learned the hard way that VB.NET requires the .NET framework to run. Anyway, I had to rewrite the...
  4. VBBro

    Searching for strings within your strings...

    I am trying to write a program using Visual Basic.Net / 6.0 that will search through a very long piece of text pasted into a text-box. Inside the text-box are patterns of numbers like this, representing a file number 12345-123456 12345-123456-1234 1234 and patterns of numbers with letters...

Part and Inventory Search

Back
Top