Forum: PHP Nov 1st, 2009 |
| Replies: 5 Views: 307 Perhaps the query on line 41 is not being executed. |
Forum: Networking Hardware Configuration Sep 13th, 2009 |
| Replies: 3 Views: 550 Time to switch modem vendors it sounds like! |
Forum: Networking Hardware Configuration Sep 6th, 2009 |
| Replies: 3 Views: 550 Possibly too much traffic on the modem? Just throwing out a possibility there. |
Forum: JavaScript / DHTML / AJAX Aug 28th, 2009 |
| Replies: 2 Views: 369 The spaces are caused by the closing tag being on a seperate line. Change your code to <textarea name="myTextArea" rows="4" cols="20"></textarea>. |
Forum: Networking Hardware Configuration Aug 21st, 2009 |
| Replies: 6 Views: 765 SONY Desktop 1 -- what is the purpose of the network bridge? Is it supposed to be there? I am no networking expert...but in cases like yours, the bridge appears (sometimes by accident). If you delete... |
Forum: Windows NT / 2000 / XP Aug 4th, 2009 |
| Replies: 7 Views: 334 Perhaps contact Microsoft Support and see if they can send you another CD. If you have a product key for the Streets and Trips (and you should, as you purchased the product) they MAY be able to help... |
Forum: Windows Software May 16th, 2009 |
| Replies: 13 Views: 1,263 Do you have any Thunderbird extensions installed? |
Forum: Windows Software May 16th, 2009 |
| Replies: 13 Views: 1,263 If you are using Windows, there is also a Windows sound which plays when a message arrives. You should be able to turn that off in the Windows Control Panel. |
Forum: HTML and CSS Apr 23rd, 2009 |
| Replies: 5 Views: 749 I don't believe it is possible. Security setups don't allow website to control that kind of information. Especially considering that some users won't have a My Documents folder! Then where the file... |
Forum: JavaScript / DHTML / AJAX Jan 6th, 2008 |
| Replies: 4 Views: 1,303 I think JavaScript is a client side only language. |
Forum: Java Oct 24th, 2007 |
| Replies: 7 Views: 1,429 Change the DefaultLookandFell property |
Forum: C++ Jun 25th, 2007 |
| Replies: 18 Views: 2,193 If anyone can do this in C++ then why can't you?
PS: You were wrong, anyone includes me, and I don't know C++ well enough to do this. ;) |
Forum: Windows NT / 2000 / XP May 26th, 2007 |
| Replies: 5 Views: 1,838 Use the CD that she installed the software with originally to do a "repair" install which will replace missing or corrupted files and [hopefully] set everything straight once again. |
Forum: Windows NT / 2000 / XP May 6th, 2007 |
| Replies: 6 Views: 2,148 Get the error code and look it up on Google or Microsoft's website. |
Forum: PHP May 5th, 2007 |
| Replies: 3 Views: 1,067 What e-mail address do you want the e-mail sent to? Is it praytotherock@hotmail.co.uk? |
Forum: Java Mar 4th, 2007 |
| Replies: 9 Views: 12,213 He did give you a suggestion on how to fix the error. Do you understand his recommendation? |
Forum: Java Jan 12th, 2007 |
| Replies: 5 Views: 1,350 Go to Control Panel, open the System Control Panel. Click the Advanced tab. Click the Environment Variables button.
In the System variables group, find CLASSPATH, then click Edit. At the end of... |
Forum: Perl Jan 12th, 2007 |
| Replies: 2 Views: 7,134 You could open the HTML file, read it into an array, then line for line print it back to the browser.
For example:
open (HTMLDOC, "<../path/to/your/file.htm");
flock (HTMLDOC, 1);
my... |
Forum: JavaScript / DHTML / AJAX Jan 10th, 2007 |
| Replies: 13 Views: 6,892 NO there is no way to do that. If there was, then every site would do it so their popups dont get blocked! |
Forum: Java Jan 4th, 2007 |
| Replies: 7 Views: 3,336 Your program is working, but no part of this problem includes showing the drawing on the screen! |
Forum: Perl Dec 24th, 2006 |
| Replies: 5 Views: 2,043 Are you forgetting the "Content-type: text/html\n\n" line? If you do, the browser doesn't know that HTML is coming and displays the script source instead.
Also the server must know that when a... |
Forum: Java Dec 6th, 2006 |
| Replies: 2 Views: 1,151 Quite a few problems, but if you look at the errors the compiler is throwing, you will see how to fix it.
For instance, you declare a public String variable called ownerName. But then in the... |
Forum: *nix Software Nov 27th, 2006 |
| Replies: 6 Views: 1,930 You're in the wrong forum. Try posting in the Tech Talk/Unix and Linux forum for problems with Linux. This forum is about problems related to developing software with Java. |
Forum: Java Nov 19th, 2006 |
| Replies: 3 Views: 3,641 I think the problem here is that you are writing a method inside of a method.
The public int calcFib(int n) should not be contained in the main method. Instead, form the class like this:
... |