aspose file tools
The moose likes Swing / AWT / SWT and the fly likes Cannot find symbol error Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "Cannot find symbol error" Watch "Cannot find symbol error" New topic
Author

Cannot find symbol error

Pooja Oza
Greenhorn

Joined: Apr 01, 2009
Posts: 21
Can someone please help me with this code? I cannot run this program. I am getting the error - "Cannot find symbol
symbol : method setOpaque(boolean)
method : class Login
newContentPane.setOpaque(true); "
^




Thanks,

Pooja Oza
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19216

setOpaque is a method of JComponent, and although JFrame is part of Swing it does not (directly or indirectly) extend JComponent. Therefore, JFrame has no such method. Since you're wrapping the Login instance in a new JFrame you might as well make Login extend JPanel instead.


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Cannot find symbol error
 
Similar Threads
Single Application but Multiple Connection problem
Single Application but Multiple Connection problem
How to activate threads in Swings.
Reg: Running Swing in Browser
Single Application but Multiple Connection problem