Forum: Java Sep 24th, 2006 |
| Replies: 7 Views: 2,290 Re: Access an URL using java program There is nothing wrong with this code. Read the first line of the exception:
Exception in thread "main" java.net.ConnectException: Connection timed out: connect
Your connection timed out. That's... |
Forum: Java Sep 24th, 2006 |
| Replies: 12 Views: 1,394 Re: Learning Java I think the first thing is learn the keywords, such as,
int
float
double
long
null
String
staticThere are several more keywords to learn. |
Forum: PHP May 30th, 2006 |
| Replies: 2 Views: 1,042 Re: Printing from Php Go to: http://php.net/printer_open (http://php.net/printer_open)
Maybe this will help you. |
Forum: Geeks' Lounge May 30th, 2006 |
| Replies: 84 Views: 6,529 |
Forum: PHP May 20th, 2006 |
| Replies: 8 Views: 43,877 Re: Sending HTML email via PHP mail function This is how I send HTML email in my PHP Contact Form demo located at :
http://programmers-paradise.net/demos/contact/contact.php
The send email code is :
@mail($to, $subject, $message, "From:... |
Forum: Community Introductions May 20th, 2006 |
| Replies: 3 Views: 766 |
Forum: Windows 9x / Me May 20th, 2006 |
| Replies: 8 Views: 4,883 |
Forum: PHP May 4th, 2006 |
| Replies: 6 Views: 1,431 |
Forum: PHP May 4th, 2006 |
| Replies: 5 Views: 1,262 Re: working PHP with Apache is it posssible I recommend XAMPP if you're a beginner.
It will install Apache Server, PERL, MYSQL, PHP, PHPAdmin and other software to aid you in development.
I would also recommend installing APACHE and... |
Forum: PHP May 4th, 2006 |
| Replies: 4 Views: 3,436 Re: receiving data from a form in PHP? Your Form Below:
<html>
<head>
<title>TAEKWONDO WEBSITE - Membership Form</title>
</head>
<body>
<font face="arial" size="4">
<p align="center"><big>Membership Form</big></p> |
Forum: Domain Names for Sale Mar 12th, 2006 |
| Replies: 0 Views: 1,022 Domain For Sell Domain For Sale:
http://programmingonline.net
Make Me An Offer.... :cool: |
Forum: Java Feb 9th, 2005 |
| Replies: 5 Views: 2,907 Re: Making a ball move down and up in an Applet Hi, if your getting an error with drawOval then I would try drawRect();
In my opinion the while(true) and repaint(); should be in the run(); method since you should create a Thread and implement the... |
Forum: Java Oct 14th, 2004 |
| Replies: 7 Views: 3,796 |
Forum: Windows NT / 2000 / XP / 2003 Oct 14th, 2004 |
| Replies: 7 Views: 19,159 Re: EXPLORER.EXE - Entry Point Not Found Hi Saaski,
I am not familiar with your system, but you can try this. It might work.
When you re-boot hit F8.
Choose the Safe Mode with Command Prompt Option.
After you log in you should see the... |
Forum: Java Oct 3rd, 2004 |
| Replies: 2 Views: 1,718 Re: Sorting Video titles using a ID numbers Hi eboney.
I know this is a late post, but this can be used for future reference. I'm not going to go in big detail on this, but maybe this will get you started. This code will take user input... |
Forum: Windows NT / 2000 / XP / 2003 Oct 3rd, 2004 |
| Replies: 7 Views: 4,189 |
Forum: PHP Sep 30th, 2004 |
| Replies: 3 Views: 2,356 |
Forum: Java Sep 30th, 2004 |
| Replies: 10 Views: 3,829 Re: Please help me compare strings Hi dncloud, nanosani has put you on track pretty good. You use equals to compare strings. If you do not care whether or not the case of the two strings are identical you can use the... |
Forum: Java Sep 13th, 2004 |
| Replies: 6 Views: 2,114 Re: Virgin programmer Hi L. Shelby,
JAVA contains a pre-built class named Math. To use it insert this statement at the top of your program =>
import java.lang.Math.*;
This class is static which means it is class... |
Forum: Java Sep 12th, 2004 |
| Replies: 4 Views: 18,568 Re: java uses or overrides a deprecated API?? Hello johnroach1985,
The error deprecated API is nothing to worry about. Your codes will compile and run fine. API stands for application programming interface. This simply means the way you are... |
Forum: Java Sep 12th, 2004 |
| Replies: 3 Views: 3,201 Re: Applet Help Hello Firsttimer,
I think I have the program working the way you needed it too. I usually don't complete homework projects, but you was pretty close. I changed your variable float comparison to... |
Forum: Java Sep 6th, 2004 |
| Replies: 5 Views: 2,007 Re: making a string .. name of an object Here I will create a class named StringClass and build constructors.....
public class StringClass
{
public static String StringAsObject;
// Defining the new Value of s when calling... |
Forum: Java Sep 3rd, 2004 |
| Replies: 4 Views: 1,459 Re: field lengths (was: help urgent ) I'm not sure of what your coding? An applet or an application. If it is an applet this will get you on the right path to adding an actionListener, however, I'm not gonna code it all. Gotta have a... |
Forum: Java Sep 3rd, 2004 |
| Replies: 1 Views: 2,792 Re: calling methods. I'm not sure if I understand correctly, but here it goes anyway.
I think your saying that you want to call a method into your main method which is in the tempcalc.class.
If this is what you want... |
Forum: Windows NT / 2000 / XP / 2003 Sep 1st, 2004 |
| Replies: 3 Views: 2,203 Re: Problem to install MySQL Follow the link above and get Mysql . Install it to C:\mysql just to make it simple. Then download Apache at http://apache.org/ . After you install apache server create a shortcut to your Command... |