Forum: eCommerce Sep 21st, 2006 |
| Replies: 2 Views: 2,410 Transferring email to a new provider Hi,
Does anyone know an easy method of transferring saved e-mail from one email account to a another? I need to transfer email from my old verizon.net account to my new comcast.net... |
Forum: HTML and CSS Nov 10th, 2005 |
| Replies: 4 Views: 1,868 |
Forum: HTML and CSS Oct 23rd, 2005 |
| Replies: 4 Views: 1,868 |
Forum: JavaScript / DHTML / AJAX Oct 21st, 2005 |
| Replies: 5 Views: 3,106 Re: Having trouble running javascript Thanks for your help.
I downloaded Firefox, and was able to detect that the "JavaScript" errored off with thr above Comment line. I moved it above the <script> tag and it worked.
Again Thanks, |
Forum: JavaScript / DHTML / AJAX Oct 20th, 2005 |
| Replies: 5 Views: 3,106 Re: Having trouble running javascript Thanks,
This script is from a assignment in the book I am studying for our class. The "HTML" book discusses the subject, then has you insert the javascript commands in a designated area of the html... |
Forum: JavaScript / DHTML / AJAX Oct 19th, 2005 |
| Replies: 5 Views: 3,106 Having trouble running javascript Hi,
I'm having trouble running javascript. I have a Dell Dimension 300 system.
The code I have in my "htm" document is:
<td id="daycell">
<script language="javascript">
<! -- Hides from... |
Forum: Java Aug 8th, 2005 |
| Replies: 3 Views: 2,429 |
Forum: Java Aug 8th, 2005 |
| Replies: 3 Views: 2,429 |
Forum: Java Jul 23rd, 2005 |
| Replies: 2 Views: 1,306 |
Forum: Java Jul 23rd, 2005 |
| Replies: 2 Views: 1,306 Help - Run time error Hi all,
I'm new to Java.
I'm having a problem with a program which will compile but not run.
When I run it, I get the following error:
java.lang.NoSuchMethodError: main
Exception in... |
Forum: C++ May 7th, 2005 |
| Replies: 10 Views: 2,143 Re: Help. This is a strange problem The system("PAUSE") is a method of using the PC system commands.
This is what we do with each class assignment to see the displayu from the cout's
Thanks, |
Forum: C++ May 6th, 2005 |
| Replies: 10 Views: 2,143 |
Forum: C++ May 6th, 2005 |
| Replies: 10 Views: 2,143 Re: Help. This is a strange problem Narue,
the cin.getline is mentioned in two C++ books I have as a way to enter in a string (where you can't with just "cin".
Also, what do you mean by "code tags"?
Thanks, |
Forum: C++ May 6th, 2005 |
| Replies: 10 Views: 2,143 Help. This is a strange problem When this program runs, I can enter in the name the first time through the while loop (using "cin.getline). When I go through the second time, it skips the name and asks to enter the ss#.
The first... |
Forum: C++ Apr 30th, 2005 |
| Replies: 3 Views: 4,310 Re: C++ Help with enum and cin Narue,
I changed my code to the way your code is. I got a clean compile, but now when I want to display what I'm entering, I'm getting a numeric value:
Also (referring to my code) if I was to add... |
Forum: C++ Apr 30th, 2005 |
| Replies: 3 Views: 4,310 C++ Help with enum and cin How can I use "cin" to allow entry of an enum type in C++?
My code is as follows:
enum Cards {TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, NINE, TEN,
JACK, QUEEN, KING, ACE};
... |
Forum: C++ Apr 4th, 2005 |
| Replies: 6 Views: 3,009 Re: Linefeed problem at the end of a record Narue,
I'm sorry. I didn't do the same command as you did. I copied the following and added to the existing code as follows:
if (fgets (temp_number, sizeof(temp_number),fp_list)!=NULL) above and at... |
Forum: C++ Apr 4th, 2005 |
| Replies: 6 Views: 3,009 |
Forum: C++ Apr 4th, 2005 |
| Replies: 6 Views: 3,009 |
Forum: C++ Apr 4th, 2005 |
| Replies: 6 Views: 3,009 |
Forum: C++ Apr 4th, 2005 |
| Replies: 6 Views: 3,009 |
Forum: C++ Apr 3rd, 2005 |
| Replies: 8 Views: 1,869 |
Forum: C++ Apr 3rd, 2005 |
| Replies: 8 Views: 1,869 Re: Loading and accessing 2 Dimensional tables Narue,
I got it working with the Printf as you have it with the period and asterisk after the %.
Now I'm working on writing them into a file (using fprint).
I really appreciate your help on... |
Forum: C++ Apr 3rd, 2005 |
| Replies: 8 Views: 1,869 |
Forum: C++ Apr 3rd, 2005 |
| Replies: 8 Views: 1,869 Re: Loading and accessing 2 Dimensional tables Hi,
From what I understand from your example, you are actually splitting up the one record 18 character field as the records are being loaded into the table, correct?
With that being done, they can... |
Forum: C++ Apr 3rd, 2005 |
| Replies: 8 Views: 1,869 Re: Loading and accessing 2 Dimensional tables Hi,
I like your answer but I'm still a little confused. After I load them into the table, I search for the valid record (via the first 12 characters - that part works fine). The next step is to... |
Forum: C++ Apr 3rd, 2005 |
| Replies: 8 Views: 1,869 Loading and accessing 2 Dimensional tables The problem I'm having is this:
I have a table [MAX_ELEMENTS] [18] where the MAX elements can be as high as 100,000. The length of each element is 18 characters.
What I doing is simply loading in... |