Search Results

Showing results 1 to 40 of 45
Search took 0.02 seconds.
Search: Posts Made By: Phaelax
Forum: Site Layout and Usability Oct 12th, 2009
Replies: 2
Views: 1,256
Posted By Phaelax
I looked at the link in IE6 and FF3 and could see anything wrong with the text or images.
Forum: Graphics and Multimedia Jul 10th, 2009
Replies: 3
Solved: Coding Syntax
Views: 526
Posted By Phaelax
Someone replied to you on
http://www.developphp.com/dev_forum/view_topic.php?cat=5&otid=7604&forum_name=Flash%20CS3%20and%20ActionScript%203&title=Coding%20Sytax%20question

In short, yes you can...
Forum: HTML and CSS Jul 6th, 2009
Replies: 2
Views: 474
Posted By Phaelax
Here's how you'd create a list:

<select name="jlist" onlick="function()" size="3">
<option value="A">Item A</option>
<option value="B">Item B</option>
<option value="C">Item C</option>...
Forum: Java May 11th, 2009
Replies: 15
Views: 664
Posted By Phaelax
Ok, so you were able to post your homework, but how about explaining what the problem is you're having?
Forum: Java Sep 21st, 2008
Replies: 2
Views: 648
Posted By Phaelax
I would do something like this:


if (!(option == JOptionPane.YES_OPTION))
stop = true;

I have no idea what the values are for the constants, so always better to use the constant name...
Forum: MySQL Sep 20th, 2008
Replies: 3
Solved: Select query
Views: 1,236
Posted By Phaelax
So you're saying the field 'stl' can be like 1 or 2 or 3 or 4 instead of where is was only like 1 before? Couldn't you group several like statements with OR?


((stl like '$st1') OR (stl like...
Forum: Site Layout and Usability Sep 20th, 2008
Replies: 5
Views: 2,689
Posted By Phaelax
Not entirely sure what you mean. Is the image left-aligned within photoshop? Or is it left-aligned in your web browser? If the latter, I'm guessing you used adobe's html export?
Forum: Java Aug 22nd, 2008
Replies: 8
Views: 1,654
Posted By Phaelax
Platform games are generally tile-based. So use a 2D array to store your map tiles. You only draw the tiles that are visible within the viewport (what the play can see on the screen). You'd...
Forum: Java Mar 21st, 2008
Replies: 2
Views: 3,243
Posted By Phaelax
You probably need to add the labels to a jpanel then add that panel to the scroll pane.
Forum: Java Mar 17th, 2008
Replies: 6
Views: 3,360
Posted By Phaelax
A server awaiting incoming connections may use an infinite loop, often in another thread.
Forum: Java Feb 13th, 2008
Replies: 2
Views: 995
Posted By Phaelax
Might try asking in a Javascript forum under web development.
Forum: Game Development Feb 11th, 2008
Replies: 8
Views: 3,044
Posted By Phaelax
Take a modular approach to your challenges. Start with a basic map of just some cubes to represent the world. Build your collision system. Once your character manages to stop walking through walls,...
Forum: Java Feb 11th, 2008
Replies: 2
Views: 1,343
Posted By Phaelax
You're also apparently too lazy to google search as well.

http://sourceforge.net/projects/vcard4j
Forum: Game Development Feb 7th, 2008
Replies: 12
Solved: sudoku
Views: 2,956
Posted By Phaelax
I was referring to the first post where he specifically asked for Java code, not the guy who attempted to hijack the thread.
Forum: Game Development Jan 23rd, 2008
Replies: 12
Solved: sudoku
Views: 2,956
Posted By Phaelax
Do you know about classes and objects yet?
Forum: Java Jan 23rd, 2008
Replies: 10
Views: 1,934
Posted By Phaelax
In Windows, there might be a way of accessing those components by using the Window ID handle or something. I'm not entirely sure here, this is just a guess.
Forum: Game Development Jan 18th, 2008
Replies: 1
Solved: Help request
Views: 820
Posted By Phaelax
So what trouble are you having? It's telling you exactly step by step what to do.

Step 1: q = a/b
q = 108/16
q = 6.75

Step 2: % is modulus or the remainder of a division. So 10/3 would 3...
Forum: Java Jan 15th, 2008
Replies: 8
Views: 1,360
Posted By Phaelax
Do you have the jacob.dll in your system32 folder? (not that that has anything to do with this error)

This is what I found with google searches:


Not entirely sure what that would have to do...
Forum: Java Jan 14th, 2008
Replies: 8
Views: 1,360
Posted By Phaelax
Are you using iTunes on Windows? Did you run the example script that is suppose to get iTunes playing songs? JACOB files in the correct locations?
Forum: Java Jan 10th, 2008
Replies: 19
Solved: Homework help
Views: 1,749
Posted By Phaelax
Alright Jimmy, what is the goal here? Once you've built this 4x4 matrix, what do you have to do with it?

Here's a simple 4x4 matrix created with the pattern you just showed above.

int[][]...
Forum: Java Jan 8th, 2008
Replies: 19
Solved: Homework help
Views: 1,749
Posted By Phaelax
I think what bugs me more than the lack of effort in describing the problem is the lack of effort in proper writing style. The Internet is not an excuse for poor grammar; feels like I'm reading posts...
Forum: Java Jan 3rd, 2008
Replies: 6
Solved: Strings
Views: 956
Posted By Phaelax
Careful rajatC, with Strings you must compare them with the equals() method, as == is intended for primitives and String is an object.


JTextField guessI = new JTextField();
String g = new...
Forum: Java Nov 5th, 2007
Replies: 14
Views: 1,773
Posted By Phaelax
What happens? Does it print anything at all, wrong data or just blank? Any errors?

Also, if you wrap your code inside code tags, it'll be a lot easier for us to read it. [c o d e] my code here[/c...
Forum: Java Nov 1st, 2007
Replies: 14
Views: 1,773
Posted By Phaelax
To clarify, a constructor will have the same name as the class and not define any return type. If it does not have the same name as the class, then it is just a method and must have a return type...
Forum: Game Development Aug 13th, 2007
Replies: 20
Views: 7,605
Posted By Phaelax
I like 3D Studio Max best, my friend prefers Maya. It basically comes down to which package we've invested our time in learning. Pretty much most packages are capable of the same things. I know a...
Forum: Game Development Jul 5th, 2007
Replies: 4
Views: 5,795
Posted By Phaelax
Do you get an error, can't find where to install it at, or what? Details!
Forum: Java May 16th, 2007
Replies: 6
Views: 1,187
Posted By Phaelax
total + 1000 doesn't do anything. as you haven't defined a place for it to store the result of the addition. If you wanted total to equal itself plus 1000, how would you write it out on paper?
Forum: Java Apr 16th, 2007
Replies: 8
Views: 1,899
Posted By Phaelax
Having a little trouble spelling words?

Obviously he hasn't done any code yet, otherwise he would already know what language he needs help in.
Pick a language to use, start working on the...
Forum: Website Reviews Mar 19th, 2007
Replies: 10
Views: 2,760
Posted By Phaelax
Way too many advertisements flashing in my face, they make the page look too cluttered. As for google ads, I still don't understand why people willingly put those on their sites. Just because its...
Forum: PHP Feb 13th, 2007
Replies: 3
Views: 1,511
Posted By Phaelax
If you're the only one that needs access, I'd say put the file in a separate directory and use an htaccess file.
Forum: Java Feb 12th, 2007
Replies: 6
Views: 2,979
Posted By Phaelax
This method would take the ball's coordinates from its center, its radius, and a Block object. It'll return true if they're overlapping.


public boolean overlap(int bx, int by, int radius, Block...
Forum: Java Dec 1st, 2006
Replies: 2
Views: 1,061
Posted By Phaelax
The charAt method returns a character and you're trying to assign it to a String variable. Fixing that should prevent the second error.
You can turn a character into a string by adding a blank...
Forum: Java Aug 20th, 2006
Replies: 2
Views: 13,004
Posted By Phaelax
This should help out. For dynamic data changes look at the list model.
http://java.sun.com/docs/books/tutorial/uiswing/components/list.html
Forum: Java Aug 11th, 2006
Replies: 10
Views: 3,967
Posted By Phaelax
You need to use generics on your collections with 1.5 to avoid this error.

Instead of:
ArrayList myList = new ArrayList();

Use:
ArrayList<MyObject> myList = new ArrayList<MyObject>();
Forum: Java Jul 9th, 2006
Replies: 9
Views: 4,821
Posted By Phaelax
well split() does take a regular expression, so why not just use that?

It looks for 2 or more spaces to be the delimiter.


String s = "BATHROOM TOI 48157 Y DOVE BWASH MCDAMIA...
Forum: Java Jul 7th, 2006
Replies: 9
Views: 4,821
Posted By Phaelax
Is each data chunk given a certain amount of space to be written in and just filled in with blank spaces to pad a smaller value?
Forum: Java Apr 25th, 2006
Replies: 3
Solved: help please
Views: 890
Posted By Phaelax
We can help you out, but we're not going to do your homework for you. Give it a try yourself first, then when you get stuck you can ask us specific questions about your problems.
Forum: Java Apr 23rd, 2006
Replies: 5
Views: 2,691
Posted By Phaelax
sounds ok, in theory. I have a 5.1 and 7.1 audio cards, they both have either the 1-digital out that connects to all the speakers at once through another system, or uses 1-plug for front and 1 for...
Forum: Java Apr 22nd, 2006
Replies: 5
Views: 2,691
Posted By Phaelax
I don't believe you can, sound cards don't use different ports for speakers and headphones. Plug in headphones and I'm pretty sure the speakers get shut off.
Forum: Java Apr 21st, 2006
Replies: 18
Views: 13,115
Posted By Phaelax
We know absolutely nothing about your project, nor have you even tried explaining it. We can't offer help on such a vague post.
Showing results 1 to 40 of 45

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC