Forum: eCommerce Sep 22nd, 2006 |
| Replies: 2 Views: 3,116 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 account.
... |
Forum: HTML and CSS Nov 10th, 2005 |
| Replies: 4 Views: 2,875 Slim,
Thanks for your help. FYI - I Aced the Web Design with a 96% on the final and a 100% for my project (98% overall). I have the e-mail from my teacher to prove it. It was a great class and I... |
Forum: HTML and CSS Oct 23rd, 2005 |
| Replies: 4 Views: 2,875 Hi,
This problem is with another one of my assignments.
As part of this assignment, I'm to add the following into a "css" file:
"Display the Flags box only when the left margin is clear,... |
Forum: JavaScript / DHTML / AJAX Oct 22nd, 2005 |
| Replies: 5 Views: 4,568 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: 4,568 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... |
Forum: JavaScript / DHTML / AJAX Oct 19th, 2005 |
| Replies: 5 Views: 4,568 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... |
Forum: Java Aug 8th, 2005 |
| Replies: 3 Views: 3,005 Paul,
Thanks for your help.
And, where can I see an example of Code Tags?
Thanks,
Bob |
Forum: Java Aug 8th, 2005 |
| Replies: 3 Views: 3,005 [FONT=Courier New]Hi,
I having problems with loading created objects into an array, then being able to access the records later in the program.
The following is a listing of my current program.... |
Forum: Java Jul 23rd, 2005 |
| Replies: 2 Views: 1,629 The missing "static" in the main was it.
Thanks, |
Forum: Java Jul 23rd, 2005 |
| Replies: 2 Views: 1,629 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
... |
Forum: C++ May 7th, 2005 |
| Replies: 10 Views: 2,740 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 7th, 2005 |
| Replies: 10 Views: 2,740 Narue,
What would you use to enter text into an array (such as a name)?
Thanks,
Bob |
Forum: C++ May 6th, 2005 |
| Replies: 10 Views: 2,740 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,740 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... |
Forum: C++ Apr 30th, 2005 |
| Replies: 3 Views: 6,606 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... |
Forum: C++ Apr 30th, 2005 |
| Replies: 3 Views: 6,606 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,... |
Forum: C++ Apr 4th, 2005 |
| Replies: 6 Views: 4,148 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... |
Forum: C++ Apr 4th, 2005 |
| Replies: 6 Views: 4,148 Narue,
In the above example, how can I get all the characters in the record except for the line feed?
Thanks,
Bob |
Forum: C++ Apr 4th, 2005 |
| Replies: 6 Views: 4,148 Narue,
The fgets command I was trying didn't work.
Hope you can help me on this, I should probably try rewriting this to C++.
Thanks again,
Bob |
Forum: C++ Apr 4th, 2005 |
| Replies: 6 Views: 4,148 Narue,
Actually, code is in "C" but compiled in a C++ compiler.
I using fgets in a while loop. I'm trying an "if" for != NULL.
Thanks,
Bob |
Forum: C++ Apr 4th, 2005 |
| Replies: 6 Views: 4,148 Hi,
Ran into another issue with my program. In C or C++ is there an easy way to skip the linefead at the end of a record (hex 0a)?
Thanks, |
Forum: C++ Apr 3rd, 2005 |
| Replies: 8 Views: 2,771 Narue,
I got the program working.
Again, thanks. |
Forum: C++ Apr 3rd, 2005 |
| Replies: 8 Views: 2,771 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: 2,771 OK.
I'll try it out.
Thanks for your help:)
Bob |
Forum: C++ Apr 3rd, 2005 |
| Replies: 8 Views: 2,771 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... |
Forum: C++ Apr 3rd, 2005 |
| Replies: 8 Views: 2,771 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: 2,771 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... |