Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~598 People Reached
Favorite Forums
Favorite Tags
java x 9
Member Avatar for NightOwls

As the title states, I can't get the background of my JFrame window to change. I would've bet that just .setBackground(Color.RED) would've worked but no luck. Here's my code: [CODE]import javax.swing.JFrame; import javax.swing.*; import java.awt.*; public class win { public static void main(String[] args) { JFrame guiWindow = new JFrame("Calculator"); …

Member Avatar for NightOwls
0
89
Member Avatar for NightOwls

Like the title says I need help to display a doubly linked list in a forward order. No matter what I do, I can just get it to display in its regular reverse order. Here's the code: [CODE]public class DoubleLinkedList { private Node h; public DoubleLinkedList() { h = new …

Member Avatar for NightOwls
0
509