Search Results

Showing results 1 to 40 of 763
Search took 0.05 seconds.
Search: Posts Made By: Phaelax
Forum: HTML and CSS 6 Days Ago
Replies: 2
Views: 231
Posted By Phaelax
either it didn't copy over correctly or you forgot to upload additional files it requires, such as a style sheet.
Forum: Database Design 12 Days Ago
Replies: 4
Views: 316
Posted By Phaelax
So you can keep track of product discounts.

Just sit down and think what you need to know about your store. You need to know the product name, a description (maybe short and long), a price,...
Forum: Java 12 Days Ago
Replies: 3
Views: 192
Posted By Phaelax
What isn't your method doing that it should be doing?

Your instructions say you should have a Customer.borrowVideo(Video v) method, but I don't see one in your class.
Forum: Java 12 Days Ago
Replies: 2
Views: 178
Posted By Phaelax
Change:
byte[] requestArray, rec_bytes

To:
byte[] requestArray, byte[] rec_bytes

I don't think you can initialize multiple variables from a single type like that within the method header.
Forum: Site Layout and Usability Oct 12th, 2009
Replies: 2
Views: 872
Posted By Phaelax
I looked at the link in IE6 and FF3 and could see anything wrong with the text or images.
Forum: Java Oct 12th, 2009
Replies: 2
Views: 125
Posted By Phaelax
I'm starting to remember why I stopped visiting the forums.

Good job, you pasted your homework assignment. Why are you sharing it? Have a specific question?
Forum: Java Oct 12th, 2009
Replies: 2
Views: 153
Posted By Phaelax
good luck with that
Forum: Graphics and Multimedia Jul 10th, 2009
Replies: 3
Solved: Coding Syntax
Views: 503
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: Site Layout and Usability Jul 10th, 2009
Replies: 8
Views: 913
Posted By Phaelax
Safari does have a Windows version. You could use Chrome which also uses Webkit, but Safari 4 currently has the most updated version of webkit; Chrome is slightly behind on the version but should...
Forum: PHP Jul 10th, 2009
Replies: 5
Views: 441
Posted By Phaelax
It'd help if you told us what errors you're getting.
Forum: HTML and CSS Jul 6th, 2009
Replies: 5
Views: 428
Posted By Phaelax
Quick and dirty example:

<div style="float:right;">
form fields go here
</div>


The key is the "float" attribute. Just play around with width/height to get what you want exactly.
Forum: Database Design Jul 6th, 2009
Replies: 1
Views: 488
Posted By Phaelax
I would probably create a single table for Units and give a unique ID to each truck and equipment. The ID would be a SKU built from a pre-defined set of rules describing how it's formed. For...
Forum: Database Design Jul 6th, 2009
Replies: 2
Views: 559
Posted By Phaelax
Hopefully, English isn't your first language. If this is for your class, why not ask your teacher? I'm sure he/she would have explained a little something about how to proceed before demanding...
Forum: Database Design Jul 6th, 2009
Replies: 1
Views: 330
Posted By Phaelax
Most web forums will state next to each board how many threads or posts have been been. Would you calculate that with a query for each board to count the number of "post" entries in the table for...
Forum: HTML and CSS Jul 6th, 2009
Replies: 2
Views: 448
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: 605
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 May 11th, 2009
Replies: 6
Views: 272
Posted By Phaelax
For starters, you can initialize your array like this:
int[] values = {1,4,9,16,17,21,25,33,37,40};

You can use "values.length" to get the number of elements in the array. Use that in...
Forum: Perl Jan 15th, 2009
Replies: 8
Views: 1,710
Posted By Phaelax
nevermind this post. The thread didn't show me there were any replies on the page before I responded.
Forum: Windows Vista and Windows 7 Dec 2nd, 2008
Replies: 5
Views: 3,721
Posted By Phaelax
My friend has a Gateway FX laptop or something with Vista. The right speaker stopped working (i checked all the balance settings). I've searched around for how to change the output from stereo to...
Forum: Java Sep 21st, 2008
Replies: 2
Views: 627
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: Graphics and Multimedia Sep 20th, 2008
Replies: 2
Views: 1,683
Posted By Phaelax
Did you include the proper package?
Forum: Graphics and Multimedia Sep 20th, 2008
Replies: 2
Views: 783
Posted By Phaelax
You can do an editor and sequencer in java, but be prepared for many headaches.
Forum: Site Layout and Usability Sep 20th, 2008
Replies: 4
Views: 1,410
Posted By Phaelax
Only way I'm aware of is to either use frames or update the containers' content dynamically.
Forum: MySQL Sep 20th, 2008
Replies: 3
Solved: Select query
Views: 1,205
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,588
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 Sep 20th, 2008
Replies: 3
Views: 1,176
Posted By Phaelax
So what's holding you back from doing it? I'm guessing you need help on parsing the initial string?
Forum: Java Sep 20th, 2008
Replies: 5
Views: 11,608
Posted By Phaelax
What is wrong with you? You brought back a 4 year old thread and hijacked it. Do a search on the forum, hundreds of kids have asked for project ideas already. Develop a front-end interface for an...
Forum: Java Sep 20th, 2008
Replies: 1
Views: 508
Posted By Phaelax
I know you can access the registry from command line, I had to do that with Basic awhile ago. This only helps in reading the registry as far as I know, if you need to write to it you'll need to look...
Forum: Java Sep 20th, 2008
Replies: 2
Views: 1,647
Posted By Phaelax
The parent nodes still require the same number of columns as the children. In that jtreeTable example, I would still need to span the folder row across all 4 columns.
Forum: JSP Sep 19th, 2008
Replies: 13
Views: 1,770
Posted By Phaelax
This all depends entirely on where your usernames are stored. In a database? A file? Hard-coded?(better not be)

Open the Java API docs and review the contructors for JComboBox (assuming you plan...
Forum: Java Sep 19th, 2008
Replies: 3
Views: 512
Posted By Phaelax
You want an HTML/CSS forum. Your question still makes little sense, what is this "hover" feature? Do you mean your background changes color when you hover your mouse over it? To override a hover...
Forum: Java Sep 19th, 2008
Replies: 2
Views: 1,647
Posted By Phaelax
I need to create table with expandable rows. Each row in the table can be expanded to display a secondary row. While I have managed this in the past for other projects, this problem is slightly...
Forum: Java Sep 19th, 2008
Replies: 2
Views: 474
Posted By Phaelax
I don't know what your "getThePage()" method looks like. I'm assuming you're trying to listen for the ENTER key? Add a KeyListener to the text field. To set the page, look at the following method in...
Forum: Java Sep 19th, 2008
Replies: 1
Views: 780
Posted By Phaelax
Recalculate the price after a selection change.

public void valueChanged(ListSelectionEvent evt){
if (!evt.getValueIsAdjusting()){
price = basePrice;
if...
Forum: Java Aug 22nd, 2008
Replies: 8
Views: 798
Posted By Phaelax
These might help you solve your equations:

http://www.mathreference.com/la-det,simeq.html

http://www.themathpage.com/alg/simultaneous-equations-3.htm

They explain the method, or "formula"...
Forum: Java Aug 22nd, 2008
Replies: 8
Views: 1,557
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 Jul 21st, 2008
Replies: 1
Views: 3,174
Posted By Phaelax
Read through this (assuming a GroupBox is what I think it is):

http://java.sun.com/docs/books/tutorial/uiswing/components/border.html
Forum: Java Jul 21st, 2008
Replies: 11
Views: 2,138
Posted By Phaelax
Here's a good project for you to work on, a spell checker.
Forum: Java Jul 18th, 2008
Replies: 2
Views: 1,212
Posted By Phaelax
I'm assuming you're talking about adding columns to a JTable? Check out the methods in the DefaultTableModel class.
Forum: Java Jul 8th, 2008
Replies: 1
Views: 604
Posted By Phaelax
We don't know what you're building, you're going to have to do a much better job at explaining what you're trying to do.
Showing results 1 to 40 of 763

 


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

©2003 - 2009 DaniWeb® LLC