Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 22 of 22
Search took 0.01 seconds.
Search: Posts Made By: oNe8
Forum: Coder's Corner Lounge Mar 7th, 2006, 6:41 PM
Replies: 64
Views: 1,275
Posted By oNe8
My Main Computer, built by me: AMD X2 4400+ ASUS...

My Main Computer, built by me:

AMD X2 4400+
ASUS Premuim SLI Mobo
XFX 7800GT
512 OCZ
300gb over three hdds
Astek WaterChill Water Cooling
G15 logitech keyboard.
Forum: Java Mar 3rd, 2006, 10:35 PM
Replies: 2
Views: 192
Posted By oNe8
Ive played around with the server socket many a...

Ive played around with the server socket many a times but what i cant fiugre out is how to make to so it can block all use a port.
Forum: Java Mar 3rd, 2006, 8:07 PM
Replies: 2
Views: 192
Posted By oNe8
Java based firewall/port monitoring

Im possibly loooking into building a small scale firewall or at least port monitor as a little side project in java. I know that Java is a horrible lang to do this in, but it is all that I know and...
Forum: Coder's Corner Lounge Feb 26th, 2006, 5:31 PM
Replies: 15
Views: 409
Posted By oNe8
Hasnt Pascal been dead for years?

Hasnt Pascal been dead for years?
Forum: Java Feb 22nd, 2006, 10:16 PM
Replies: 4
Views: 253
Posted By oNe8
public static double convertToFahrenheit(double...

public static double convertToFahrenheit(double c)
{
return (9.0 / 5.0) * c + 32;
}


Order of opertaions mix up
Forum: Java Feb 22nd, 2006, 9:59 PM
Replies: 2
Views: 266
Posted By oNe8
Sorting an array of objects

Ok this one has me pretty stumped for something that should seem very simple.

SO i have an object[] that i need to sort by in alabetical order by the String returned by object.getName(). I suspose...
Forum: Java Feb 22nd, 2006, 9:01 PM
Replies: 20
Views: 512
Posted By oNe8
Or what you can do is use gridLayout that is only...

Or what you can do is use gridLayout that is only a 1x2 grid and when it adds the compents to it, it will make them the same size. Because they will be divded up to share the space.
Forum: Java Feb 22nd, 2006, 2:43 PM
Replies: 9
Views: 441
Posted By oNe8
What is "the screen", like the object type,...

What is "the screen", like the object type, Almost every swing object has a method to either dispose of it or clear it.
Forum: Java Feb 21st, 2006, 11:40 PM
Replies: 20
Views: 512
Posted By oNe8
getContentPane comes from the JFrame class, so...

getContentPane comes from the JFrame class, so your project will ne to extend JFrame, all the content pane really is a the a master JPanel.

usally you create a container object of the content pane...
Forum: Java Feb 5th, 2006, 1:02 AM
Replies: 6
Views: 224
Posted By oNe8
OK even though im postive this is hw, Im going to...

OK even though im postive this is hw, Im going to offer so advice because i think your new to the lang. First off you need to write more readable code. The standard Java style for varibles is...
Forum: Java Feb 5th, 2006, 12:38 AM
Replies: 23
Views: 660
Posted By oNe8
Before you touch GUIs in Java you should probably...

Before you touch GUIs in Java you should probably be familar with arrays and string and how methods are called and deffintaly the actionListener class. Other to that there inst super complicated GUI...
Forum: Other Programming Languages Feb 5th, 2006, 12:33 AM
Replies: 12
Views: 361
Posted By oNe8
Or you could learn Java, the Swing package and...

Or you could learn Java, the Swing package and awt package are incredibly easy to use and allow you to write a basic GUI in around 40 lines, and there is tons of options. Also adding that swing is...
Forum: Java Feb 3rd, 2006, 3:29 PM
Replies: 23
Views: 660
Posted By oNe8
Go with the 6th editition, there is a bunch of...

Go with the 6th editition, there is a bunch of changes to help get you into java 5. Plus the order is a little different. But that is deffintaly the book to get if you have the 80 dollars to fork out...
Forum: Coder's Corner Lounge Jan 30th, 2006, 12:00 AM
Replies: 637
Views: 18,992
Posted By oNe8
311.) Java, with GUI import...

311.)
Java, with GUI



import java.awt.Button;
import java.awt.Frame;
import java.awt.TextArea;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
Forum: Java Jan 29th, 2006, 8:32 PM
Replies: 6
Views: 211
Posted By oNe8
uhhh Use netbeans, it comes with and creates...

uhhh Use netbeans, it comes with and creates application to JSP files and runs them off of TomCar.
Forum: Java Jan 28th, 2006, 11:19 PM
Replies: 2
Views: 227
Posted By oNe8
If your looking to create a web browser i suggest...

If your looking to create a web browser i suggest using SWT, it created by the eclipse fondation and has a built in browser class. I acutaly posted the code to a browser i wrote using the SWT kit in...
Forum: JavaScript and Client-Side Browser Scripting Jan 28th, 2006, 11:14 PM
Replies: 4
Views: 288
Posted By oNe8
I never written much javascript but i do i heavy...

I never written much javascript but i do i heavy amount of just Java and that seems like it should work you could try going

var power_msg = "Clicks per hour: 123" +"\n" + "Clicks per day: 456"...
Forum: Java Jan 22nd, 2006, 8:39 PM
Replies: 4
Views: 364
Posted By oNe8
Im using netbeans 5. The swt jar is added to...

Im using netbeans 5. The swt jar is added to compling library, but that wasnt the issuse. The same code complied fine in BlueJ. The issue i believe comes some where in how netbeans breaks all the...
Forum: Java Jan 22nd, 2006, 12:13 AM
Replies: 4
Views: 364
Posted By oNe8
mmm I just got it to work in BlueJ. It works...

mmm I just got it to work in BlueJ. It works fine, I like the netbeans IDE but it makes somethings way to complicated sometimes.
Forum: Coder's Corner Lounge Jan 20th, 2006, 9:38 PM
Replies: 89
Views: 1,756
Posted By oNe8
I Think Java will be around for a bit longer, Sun...

I Think Java will be around for a bit longer, Sun dumps alot of into it. But it will evently get swept out by some lang that is extremly GUI friendly and 12 year olds can write.
Forum: Coder's Corner Lounge Jan 20th, 2006, 8:15 PM
Replies: 89
Views: 1,756
Posted By oNe8
I think with the rise of Apple latley, with the...

I think with the rise of Apple latley, with the up coming macinteltashish Macs sells are really suspsoed to rise. When vista is realised alot of people are going to have to replace their software and...
Forum: Java Jan 20th, 2006, 6:52 PM
Replies: 4
Views: 364
Posted By oNe8
Using SWT in netbeans.

IM using netbeans as my IDE and I'm working on a browser project and im using SWT distubited by ecslipse. I have added the SWT Jar file as a library then added the libary to the project. The code...
Showing results 1 to 22 of 22

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 10:52 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC