CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: KevinC

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    1,325

    Perfect!! I was actually planning on using the...

    Perfect!! I was actually planning on using the JWindow approach but I definitely like the undecorated JDialog idea better. As it turns out I am using the 1.4.1 SDK but I was unable to figure out what...
  2. well, you can set the main class but that won't...

    well, you can set the main class but that won't help you. If you are using a shortcut to launch the application you can specify the switch as part of the command line in the shortcut.

    HTH,
    -=-...
  3. I'm not sure you're still looking for help on...

    I'm not sure you're still looking for help on this but I can give you some info to get you started. Basically your dialog or whatever will need to listen for keyboad events and each time it gets on...
  4. Replies
    2
    Views
    1,012

    I believe that the only way to accomplish this...

    I believe that the only way to accomplish this would be to listen for the drag started event and if the object being fragged is the main window just cancel the event. Not 100% sure on this but it...
  5. Replies
    4
    Views
    740

    To follow up on what dlorde said, I have noticed...

    To follow up on what dlorde said, I have noticed that you cannot request focus to a field before the dialog is set visible. Now, if you've thought about this you have noticed the problem. Once you...
  6. Replies
    1
    Views
    1,772

    Hmmmm, I'm not sure you'll be able to actually do...

    Hmmmm, I'm not sure you'll be able to actually do that but I can tell you that if you can it will involve writing your own Renderer. Take a look at the javadocs for ListCellRenderer, it may provide...
  7. Replies
    1
    Views
    542

    You need to have the dll in your system path, the...

    You need to have the dll in your system path, the easiest place to put the dll is the Windows directory. If you happen to be on a non-windows OS just add the directory the dll is in to your classpath...
  8. Replies
    5
    Views
    843

    What class can't it find? The error should say...

    What class can't it find? The error should say something like NoClassDefFoundError java.lang.XXX or something like that. We need to know which classes can't be found in order to help. Also, are you...
  9. Replies
    2
    Views
    1,325

    Displaying a JPanel as a dialog

    OK, I realize this may seem a little strange but I really need some help on this. I have an application in which I would like to display a simple JPanel with a JTextField that allows the user to...
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured