Forum: C
Nov 14th, 2006, 8:41 PM
|
|
Replies: 11
Views: 470
|
Forum: Coder's Corner Lounge
Nov 10th, 2006, 11:42 PM
|
|
Replies: 9
Views: 224
|
Forum: C
Nov 10th, 2006, 11:38 PM
|
|
Replies: 11
Views: 470
|
Forum: C
Nov 7th, 2006, 11:47 AM
|
|
Replies: 11
Views: 470
|
Forum: Java
Dec 13th, 2005, 7:47 PM
|
|
Replies: 14
Views: 550
|
Forum: Java
Dec 3rd, 2005, 11:39 AM
|
|
Replies: 25
Views: 604
|
Forum: Java
Nov 30th, 2005, 4:34 PM
|
|
Replies: 3
Views: 157
|
Forum: Java
Nov 28th, 2005, 1:44 PM
|
|
Replies: 10
Views: 356
Add this to the constructor of your...
Add this to the constructor of your CatalogueArray class.
for(int i = 0; i < mediaItems.length; ++i) {
mediaItems[i] = new MediaItem();
} And see if that works. Also I noticed a few other flaws...
|
Forum: C
Nov 28th, 2005, 1:28 PM
|
|
Replies: 33
Views: 870
|
Forum: Java
Nov 28th, 2005, 5:39 AM
|
|
Replies: 10
Views: 356
|
Forum: Java
Nov 28th, 2005, 5:15 AM
|
|
Replies: 10
Views: 356
You have an array of MediaItem objects that you...
You have an array of MediaItem objects that you have to make sure everyone is initialized before you can use the objects in your displayAll() function. I don't have time to check all your code for...
|
Forum: C++
Nov 27th, 2005, 10:40 PM
|
|
Replies: 16
Views: 296
|
Forum: Coder's Corner Lounge
Nov 27th, 2005, 10:33 PM
|
|
Replies: 637
Views: 18,977
|
Forum: Java
Nov 27th, 2005, 9:30 PM
|
|
Replies: 10
Views: 356
|
Forum: C
Nov 27th, 2005, 9:16 PM
|
|
Replies: 33
Views: 870
|
Forum: Java
Nov 21st, 2005, 3:33 PM
|
|
Replies: 26
Views: 833
|
Forum: Java
Nov 21st, 2005, 3:31 PM
|
|
Replies: 6
Views: 424
|
Forum: Java
Nov 20th, 2005, 8:19 PM
|
|
Replies: 14
Views: 550
To start, you can lose almost all the comments...
To start, you can lose almost all the comments you have. Especially the do while loop you labeled a while loop. A comment to tell you that the next line is an if statement puts new meaning to the...
|
Forum: C
Nov 16th, 2005, 1:38 PM
|
|
Replies: 2
Views: 173
|
Forum: C
Nov 16th, 2005, 11:37 AM
|
|
Replies: 9
Views: 374
No problem. Let's say we're working on two...
No problem. Let's say we're working on two different programs together. The first one is for sorting a file that contains a list of words in alphabetical order and the second one is for taking a...
|
Forum: C
Nov 15th, 2005, 1:28 PM
|
|
Replies: 9
Views: 374
|
Forum: C
Nov 8th, 2005, 10:56 PM
|
|
Replies: 20
Views: 537
|
Forum: Perl
Nov 8th, 2005, 4:51 PM
|
|
Replies: 11
Views: 522
|
Forum: Java
Nov 7th, 2005, 5:37 AM
|
|
Replies: 21
Views: 498
|
Forum: C
Nov 2nd, 2005, 1:13 PM
|
|
Replies: 23
Views: 496
|
Forum: Java
Oct 27th, 2005, 5:13 PM
|
|
Replies: 4
Views: 225
All you did was present us with your (likely...
All you did was present us with your (likely homework) problem. You didn't tell us how you've already tried to solve the problem or provide us with any code you've started with (besides the function...
|
Forum: C
Oct 24th, 2005, 12:43 AM
|
|
Replies: 21
Views: 563
char...
char side[16]={"1","2","3","4","5","6","10","11","15","16","20","21","25"};
You're trying to assign an array of strings to a single char array here.
|
Forum: Other Programming Languages
Oct 23rd, 2005, 11:48 PM
|
|
Replies: 11
Views: 289
|
Forum: Show Off Your Open Source Projects
Oct 23rd, 2005, 9:32 PM
|
|
Replies: 0
Views: 102
Password Generators
I noticed some people had their password generators posted. So I wanted to post mine for contrast and anybody else that was interested.
In Java:
package misc;
import java.util.Random;
import...
|
Forum: C++
Oct 22nd, 2005, 10:38 PM
|
|
Replies: 17
Views: 602
|
Forum: C
Oct 22nd, 2005, 11:14 AM
|
|
Replies: 12
Views: 364
|
Forum: C
Oct 18th, 2005, 6:12 PM
|
|
Replies: 5
Views: 256
I would go one of three ways... First you could...
I would go one of three ways... First you could modify the installer to write the absolute path of the base directory where it's installed to, to a constant location. I mean it's a drawback because...
|
Forum: Java
Oct 10th, 2005, 5:53 PM
|
|
Replies: 24
Views: 1,003
I'm pointing out that debug messages that are...
I'm pointing out that debug messages that are written to the terminal nanoseconds before it closes are useless. Not that you need the debugging messages for this particular program. It seems you're...
|
Forum: Java
Oct 9th, 2005, 11:55 PM
|
|
Replies: 24
Views: 1,003
Not that this has anything to do with the topic...
Not that this has anything to do with the topic but I love it when fellow Java programmers terminate the VM before a useful debugging message can be read. Only exception being if System.setOut(...)...
|
Forum: C
Oct 4th, 2005, 6:56 PM
|
|
Replies: 26
Views: 893
|
Forum: Coder's Corner Lounge
Sep 29th, 2005, 3:41 PM
|
|
Replies: 2,124
Views: 27,046
|
Forum: Coder's Corner Lounge
Sep 28th, 2005, 11:22 PM
|
|
Replies: 2,124
Views: 27,046
|
Forum: Coder's Corner Lounge
Sep 25th, 2005, 1:11 PM
|
|
Replies: 2,124
Views: 27,046
|
Forum: Coder's Corner Lounge
Sep 25th, 2005, 1:09 PM
|
|
Replies: 2,124
Views: 27,046
|
Forum: Coder's Corner Lounge
Sep 25th, 2005, 1:05 PM
|
|
Replies: 2,124
Views: 27,046
|