458 Posted Topics

Member Avatar for xiikryssiix

I think that you probably want to use a vector. If you just print out the e-mail address right away and forget about it, you'll never be able to check for duplicates. So, each time you "find" an e-mail address see if it already exists in the vector. If not …

Member Avatar for cgeier
0
109
Member Avatar for arunkumars

You can use "localhost", but I would make it a "configurable" option. What if they decide to move the database to another computer? Place all user configurable options in a file (text or binary)--in essence make your own ".ini" file. Then read the values from file either when the program …

Member Avatar for arunkumars
0
424
Member Avatar for mashedtomatoe

I think that we need to know what is meant by "doesn't boot". The boot process consists of a lot of pieces. Things such as loading BIOS, memory checks/tests, detecting boot devices, loading device drivers, etc. See [url]http://technet.microsoft.com/en-us/library/bb457123.aspx[/url] for more information. Need to make sure that the boot order in …

Member Avatar for cgeier
0
223
Member Avatar for vishal0soni
Member Avatar for cgeier
0
137
Member Avatar for k2cool_87
Member Avatar for slacke
0
349
Member Avatar for bigbadbag33

[code] String nameOfEmployee = ""; String strRateOfPay = ""; double dblRateOfPay = 0; System.out.println("Enter employee name (type 'stop' to exit): "); InputStreamReader kbInput = new InputStreamReader(System.in); BufferedReader brIn = new BufferedReader(kbInput); do { try { nameOfEmployee = brIn.readLine(); if (nameOfEmployee.equalsIgnoreCase("stop")) { break; } } catch (IOException ex) { System.err.println(ex); } …

Member Avatar for bigbadbag33
0
106
Member Avatar for robear38

Go to your local thrift store (ex: Goodwill, Salvation Army, etc...) and buy yourself a used corded keyboard (if you don't have one).

Member Avatar for robear38
0
94
Member Avatar for cgeier

Does anyone know how to communicate with a Unisys UTS60 system in Visual Basic? I'd like to be able to send commands and receive data.

0
94

The End.