JFC « GUI « Java Swing Q&A





1. Did anyone check out the JFC Demo shipped with JDK1.2.2    coderanch.com

I hadn't looked at it before. It's pretty cool, I think. I don't have much problem with the response time when I run on my 128 MB 500 MHz pentium III using JDK 1.3 beta. It does get more noticeable if I switch over to my 64 MB 266 MHz AMD, also using JDK 1.3 beta. (The latter isn't really mine, ...

2. what is Swing / JFC / AWT ???    coderanch.com

JFC is the Java Foundation classes which is made up of several parts, two of which are Swing and AWT. JFC also includes the accessibility utilities API, 2D API, etc. The AWT is the GUI toolkit and uses the underlying OS native code for actually drawing objects. The AWT includes the event model. Swing builds on the AWT and includes objects ...

3. JFC    coderanch.com

This is for VB programmers. Suppose in Vb, U have a form with 2 Text boxes. One to accpet a name and the other for age. How do U validate that the user dosent leave any field blank. How do U ensure , for example, the the age is NOT less than ZEro

4. Anyone read JFC Unleashed?    coderanch.com

Hello Everyone! I'm an experienced Java programmer, but I have only used AWT Components for building GUIs before (since I am mainly interested in Applets). I have been interested in picking up Swing for some time now, and saw JFC Unleashed for about $4 in a store near my house. Usually I don't like books in the "Unleashed" series because they ...

5. JFC    coderanch.com

// TileAction.java // import javax.swing.*; import java.awt.event.*; import java.awt.*; import java.beans.*; // An action that tiles all internal frames when requested. public class TileAction extends AbstractAction { private JDesktopPane desk; // the desktop to work with public TileAction(JDesktopPane desk) { super("Tile Frames"); this.desk = desk; } public void actionPerformed(ActionEvent ev) { // How many frames do we have? JInternalFrame[] allframes = ...

6. JFC to WFC    coderanch.com

8. JFC    coderanch.com

9. AWT and JFC    coderanch.com





10. Some unanswered question in swings/awt/jfc????kindly answer me these questions??    coderanch.com

1.is ther any heavy weight component in swing?what are they?and y? 2.what are trusted and untrusted applets?and difference between them? 3.how to load a html from a applet? 4.difference between and a frame?default layouts of them? 5.what are grid and grid baglayout?which is more advantages? 6.difference applet and a japplet? 7.layout for CARD in swing? 8.what is applet flickering and how ...

11. Swing / JFC / AWT    coderanch.com

12. what is JFC EXACTLY ??    coderanch.com

13. AWT, Swing, JFC    coderanch.com

14. What exactly is JFC?    coderanch.com

Yesterday I had an interview, The interviewer asked me what does JFC include? She went further ahead to tell me that JFC doesnot mean just swing components....I was taken aback..So my question is what exactly is JFC and what are the JFC component?..I would appreciate an answer or an direction where I could search the answer. Thanks in Advance

15. can I use JFC Swing?    coderanch.com

I'm not familiar with Documentum or what exactly the upload and download entails. But Swing has been part of the core JDK since Java 1.2, which came out, oh, I don't know, probably around 1999. Do you need to support users on the Microsoft JVM or why are you concerned that they might not have Swing? [ November 12, 2006: Message ...

16. JFC    coderanch.com

JFC -- there's a term from the distant past. I forgot what it was so I googled it. Here's the page that tells you what it is: http://java.sun.com/docs/books/tutorial/uiswing/start/about.html And yes, it isn't the same as AWT. If you know anything about AWT you will see that immediately as you read that tutorial. If you don't know anything about AWT then all ...