User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 374,570 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,525 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 25 of 25
Search took 0.01 seconds.
Posts Made By: Banderson
Forum: Java Sep 24th, 2006
Replies: 7
Views: 2,290
Posted By Banderson
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
Posted By Banderson
Solution 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
Posted By Banderson
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
Posted By Banderson
Re: Quick Poll! What is your height? (any measurements will do)

I think I am getting shorter and my wife is getting taller :lol:
I am 5' 10"
Forum: PHP May 20th, 2006
Replies: 8
Views: 43,877
Posted By Banderson
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
Posted By Banderson
Re: I'm a N00b

Nice to meet you Trevor.
Welcome to the community.
Forum: Windows 9x / Me May 20th, 2006
Replies: 8
Views: 4,883
Posted By Banderson
Re: Macromedia Flash Player

Try downloading from Adobe at:
http://www.adobe.com/products/flashplayer/
Forum: PHP May 4th, 2006
Replies: 6
Views: 1,431
Posted By Banderson
Re: help with PHP script to return dates

Look in the manual for checkdate();
Maybe this will help you.
Forum: PHP May 4th, 2006
Replies: 5
Views: 1,262
Posted By Banderson
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
Posted By Banderson
Solution 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
Posted By Banderson
Domain For Sell

Domain For Sale:

http://programmingonline.net

Make Me An Offer.... :cool:
Forum: Java Feb 9th, 2005
Replies: 5
Views: 2,907
Posted By Banderson
Solution 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
Posted By Banderson
Re: need help to create a java program

Oh my, how many times must this be repeated?
Forum: Windows NT / 2000 / XP / 2003 Oct 14th, 2004
Replies: 7
Views: 19,159
Posted By Banderson
Solution 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
Posted By Banderson
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
Posted By Banderson
Solution Re: I want to reinstall windows xp and get rid of everything on the hard drive

Hi Noahsson,
Here is a link to some software that will do what you are wanting to do. Be sure to have windows recovery disk because it deletes your operating system too. DBan...
Forum: PHP Sep 30th, 2004
Replies: 3
Views: 2,356
Posted By Banderson
Solution Re: where can i download FTP program?

Hi mystique.
Personally, I recommend SmartFTP (http://smartftp.com/) :rolleyes:
Forum: Java Sep 30th, 2004
Replies: 10
Views: 3,829
Posted By Banderson
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
Posted By Banderson
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
Posted By Banderson
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
Posted By Banderson
Solution 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
Posted By Banderson
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
Posted By Banderson
Solution 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
Posted By Banderson
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
Posted By Banderson
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...
Showing results 1 to 25 of 25

 
All times are GMT -4. The time now is 5:41 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC