Forum: Site Layout and Usability 22 Days Ago |
| Replies: 2 Views: 610 I looked at the link in IE6 and FF3 and could see anything wrong with the text or images. |
Forum: Java 22 Days Ago |
| Replies: 2 Views: 116 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 22 Days Ago |
| Replies: 2 Views: 133 |
Forum: Graphics and Multimedia Jul 10th, 2009 |
| Replies: 3 Views: 481 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: 890 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: 434 It'd help if you told us what errors you're getting. |
Forum: HTML and CSS Jul 6th, 2009 |
| Replies: 5 Views: 421 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: 465 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: 521 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: 317 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: 430 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: 581 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: 261 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,639 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,450 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: 610 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,640 Did you include the proper package? |
Forum: Graphics and Multimedia Sep 20th, 2008 |
| Replies: 2 Views: 776 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,398 Only way I'm aware of is to either use frames or update the containers' content dynamically. |
Forum: MySQL Sep 20th, 2008 |
| Replies: 3 Views: 1,192 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,528 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,136 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,444 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: 505 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,581 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,737 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: 508 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,581 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: 466 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: 753 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: 790 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,514 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: 2,971 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,071 Here's a good project for you to work on, a spell checker. |
Forum: Java Jul 18th, 2008 |
| Replies: 2 Views: 1,164 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: 602 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. |
Forum: PHP Jun 16th, 2008 |
| Replies: 1 Views: 933 by default they should be displaying inline, unless the container's width can't fit them that way. Let's see the code where the images are being called |
Forum: PHP Jun 14th, 2008 |
| Replies: 0 Views: 2,209 Nevermind, I'm a retard. I had phpMyAdmin opened to the live server, not the testing server which is still empty. I need a drink. |
Forum: PHP Jun 5th, 2008 |
| Replies: 3 Views: 689 I have session_start() at the beginning, and $_POST fields don't need to be filled out.
User logs in, the page reloads and $_SESSION['loggedIn'] will output 1, showing that the user did indeed... |
Forum: Java Jun 5th, 2008 |
| Replies: 1 Views: 1,335 Where are you getting lost at ? |