458 Posted Topics
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: Use your XP CD to enter the Recovery comand prompt screen, and then run "chkdsk". | |
Re: Check out this Microsoft article: [url]http://support.microsoft.com/kb/836941[/url] | |
Re: [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); } … | |
Re: Go to your local thrift store (ex: Goodwill, Salvation Army, etc...) and buy yourself a used corded keyboard (if you don't have one). | |
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. |
The End.