Forum: Java May 12th, 2009 |
| Replies: 3 Views: 508 I am doing a game and I need to reset the graphics back to its original picture once a new game begins, however when I click the new game button, everything else resets but the graphics do not even... |
Forum: Java May 5th, 2009 |
| Replies: 7 Views: 666 I guess I gotta post my whole code to let u guys understand....
Main Frame code:
public class MainFrame extends JFrame {
public static void main(String[] args) {
... |
Forum: Java May 5th, 2009 |
| Replies: 7 Views: 666 yes I knida want to have a Jpanel which paints inside a Jpanel in a JFrame. The painting works when inside just a JFrame but doesnt when I put it inside a JPanel |
Forum: Java May 5th, 2009 |
| Replies: 7 Views: 666 i did not post myPanel class because I know that it is working perfectly when I tested it. I cant possibly post my whole code here, unless someone wants to do my homework for me:). There is a... |
Forum: Java May 5th, 2009 |
| Replies: 7 Views: 666 I need to do paint a graphics into a nested panel. I am able to paint in a frame but when I add the class for painting into another JPanel, I see nothing.
I know how to create nested panels but... |
Forum: Java Apr 18th, 2009 |
| Replies: 1 Views: 354 ok so I need to use a 2d array to draw a hangman picture for a hangman game. the picture should be something like this
============
|<space>|
|<space>O
|<space>/|\
|<space>/\
|
|
but when i... |