1. Netbeans GUI Form corrupted? stackoverflow.comI was making a java gui application through netbeans IDE. All was working fine but yesterday when I opened the form in Netbeans, it said that the form had been corrupted ... |
2. request for enhancement - make a GUI form "regular" code forums.netbeans.orgThomas Wolf Posted via mailing list. Posted: Tue Aug 04, 2009 4:14 pm Post subject: request for enhancement - make a GUI form "regular" code Maybe this already ... |
3. form navigation coderanch.comI have to create a project in which I have to move from one form to other.What I have decided is to make first form with button on it and when a user click he reach to a particular form and when he close the form he returns back to first form. I want that either user uses the tab or ... |
4. How to make a neat form? coderanch.comHi Avin, How about the code below, for a start? import java.awt.*; import java.awt.event.*; import javax.swing.*; public class NeatForm extends JFrame { private JTextField firstNameText, lastNameText, ageText; public NeatForm() { super( "Neat Form" ); Container cont = getContentPane(); // // Create border panel to keep labels from resizing but allow // textfields to get resized with frame. // JPanel outerPanel = ... |
5. on Contrl + Home how to set focuson to first field on the form? coderanch.com |
6. How to make the only the Child form enabled? coderanch.comHi, what do you mean with disabling a JInternalFrame. Do you mean setEnabled(false)? I think, this can't work, because the components inside the frame are not disabled. You could try to work with the GlassPane. If you set the glasspane of your parent to visible, then no mouseclick would reach a component behind and the glasspane is the most top component. ... |
7. Open a form coderanch.com |
8. Show a Form in Modal state coderanch.com |
9. How to make form Modal??? coderanch.com |
10. how do we go to next form coderanch.com |
11. Borderless Form coderanch.com |
12. entry form has to look exactly like paper form coderanch.comI have a client that is very hung up on creating an electronic version of a government form that looks EXACTLY like the actual paper form. She will not except that all the fields are the same, no, it has to look EXACTLY like what the paper or PDF looks like, down to the last detail. This means I can't use ... |
13. Dirty Forms coderanch.comI'm investigating the best way to go about determining when a form is "dirty" meaning changes have been made and the user should be visually notified that a save is required and/or if the form is closed the user is notified that a save should be performed before closing the form. I'd like to avoid attaching a listener to every single ... |
14. Correct way to navigate from one form to another coderanch.comHi, I trying to develop a small swing application, I have two frames one frame is loggin screen and the 2nd frame is a simple frame with contain a form The login frame will have an "Ok" button and once the "Ok" button is clicked, I want my 2nd frame (which is form) to display. I have written that piece of ... |
15. Form called by other form coderanch.com |
16. Form calliing other form coderanch.comI obtained to make. I did not only obtain to show. It shows but minimized. If I maxmize it, then buttons inside of it do not appear. I need heigth and width and I do not obtain to make. My full code is below and my variable call the form is clente_tela. public class MenuCli extends JFrame{ private JMenu lancamento,operacoes; private ... |
17. Wait untill the form is closed coderanch.com |
18. Regarding Sash Form coderanch.comI have a problem with sash forms please help me... this kind of requirement is there in my application please help me I created one sash form. This sash form is main sash form in this i created two more sash forms i.e one is left and one right. when i change the weights of any one of the sash form ... |
19. How do I create a GUI form? forums.oracle.comThanks for your reply! I went through the links you suggested and I learned some really good stuff. I'm going to refraze my question though, because I didn't put it very well at all. When building a General Application (as opposed to an Applet) one can create the GUI using a drag-and-drop-like graphical tool in the IDE. I'm under the impression ... |
20. Quick, Lighweight GUI form forums.oracle.comI have very little experience with Java GUIs but from what I've seen it's all very bloated... I'm in a CS class and I want to make a form for a program, so I was wondering if there was just a really fast lightweight like... trick or something for making a form... I just need two inputs and a button, and ... |
21. GUI forms and MD5 forums.oracle.comWell, you don't pass the component to the method. (The error message already told you that.) You need a String. (Your code tells you that.) So how do you get a String from a JPasswordField? Well unfortunately that's a little more difficult that most text fields. Usually you do the obvious thing and call the getText() method, but in this case ... |