Design von Swing like JarBuilder

Hi all, do anyone know the programm JarBuilder. It haves a very well design. How can I make the Design of my application like the JarBuilder�s design.
How can i edit the design for example of the Toolbar from an application and make it with schadows or anythink.
Thanks verry well
Nikolay

Hi all, do anyone know the programm JarBuilder. It
haves a very well design. How can I make the Design of
my application like the JarBuilder�s design.
How can i edit the design for example of the Toolbar
from an application and make it with schadows or
anythink.
Thanks verry well
NikolayHello,
you need the [url http://www.incors.de/produkte.php3]Kunststoff Look&Feel.
Regards,
Tim

Similar Messages

  • Design of swing urgent

    hi all..
    I am new to swing,can anyone help me in designing the swing application like this
    I should have textbox at the top like
    label name: textbox
    and below the textbox i should have a listbox,like
    label:
    listbox
    and beside the textbox i should have a button
    Can any one help me..
    Thanks
    ajay

    I'll assume that you have a JFrame (an application window) to contain your application GUI stuff. In the JFrame, get your content pane and add the components to it using appropriate layout managers:
    public class MyAppFrame extends JFrame {
         //-- class members
         JTextField jtf_Text;
         JButton jb_Button;
         JList jl_List;
         MyAppFrame(String title) {
              //-- initialize frame
              super(title);
              setLocation(x,y); //-- enumerate x and y
              setSize(w,h);       //-- enumerate w and h
              //-- add components to frame
              //---- this is the panel into which to place components for the frame
              JPanel contentPane = getContentPane();
              contentPane.setLayout(new BorderLayout());
              //---- label textbox button
              JPanel panel = new JPanel();
              panel.setLayout(new FlowLayout()); //-- fits components, first horizontally, then vertically
              panel.add(new JLabel("Name: "));
              panel.add(jtf_Text = new JTextField(/*Fill in ... */));
              panel.add(jb_Button = new JButton("Button"));
              contentPane.add(panel, BorderLayout.NORTH);
              //---- label
              panel = new JPanel();
              panel.setLayout(new GridLayout(2,1)); //-- 2 rows, 1 column
              panel.add(new JLabel("Label: "));
              panel.add(jl_List = new JList(/*Fill in... */));
              contentPane.add(panel, BorderLayout.CENTER);
              //-- display frame
              setVisible(true);
         public static void main(String[] args) {
              MyAppFrame maf = new MyAppFrame("Application Title");
    }Realize that there is no absolute placement control of components, only relative placement precomputed and handled by the layout managers. Therefore, if the JFrame is resized, components may be shifted around depending upon the attributes of the layout manager. This is a good time to look at the Java 2 Swing tutorials or get a good book on Java Swing. "Graphic Java 2: Mastering the JFC, Vol. 2 - Swing" (Sun Microsystems Press) is recommended. Also keep abreast of differences between older Java versions (1.2, 1.3) and the latest (1.4).
    Robert Templeton

  • How to use more than one page to design a form-like report???

    Hi
    I am designing a form-like report. and widening the repeating frame to contain all the page or the window like this page:
    Image: !http://up1.m5zn.com/photo/2008/12/21/07/e728mos12.jpg/jpg!
    Now there is no space at the window to complete designing the report!
    How to make the repeating frame to contain more than one page or one window to complete designing the report?

    change Vertical Panels per Page to 2 (or more as needed) for the Main Section of Layout Model.

  • How to design simple person like this image(attached) using illustrator ??

    hi ,
    i want any one help me and tell me steps to design simple person like this using illustrator :

    hello,
    thanks ,

  • I want  to design a News like the *LInklist* by XML Form Builder

    Hello:
       Everyone!
       Now I have another problem about XML Form Builder
       I want  to design a News like the LInklist by XML Form Builder
       I want the result,For Example
    SAP News
           1news1
           2news2
           3news3
    who can give me some adviseon about how to disign the Edit, Show and Renderlistitem in XML
    Thanks a lot
    Hope your help!

    Hi,
    In XML Form
    1) Edit form is used for designing the user interface.
    2) Show form is used for displaying the xml form to the end user
    3) RenderListItem is used for  rendering the xml form into a small description like 1News1, 2news2  etc..
        Here you need to display only the heading of the xml form
    After you create the xml form
    Create Layout set  where you need to give the proerties like xml renderer form , no of items to display etc...
    Thanks&Regards,
    Raghu

  • Design a sheduler, like in outlook express

    hi
    I want to design a sheduler like we have in outlook Express, can some one guide???? Is there any website describing to design a one in details

    Peabody wrote:
    Problem:
    To connect with my AV software's email scanner POP3 server, so that it can scan incoming gmail in Outlook Express, I have to use a pop3 server and port setting with NO SSL.
    This always worked perfectly until approx 16 March. since then it has consistently produced errors, such as:  "The connection to the server has failed. Account: '...', Server: '127.0.0.1', Protocol: POP3, Port: 5001, Secure(SSL): No, Socket Error: 10061, Error Number: 0x800CCC0E"
    I have no problem receiving bt mail in Outlook Express from mail.btinternet.com in the normal way and it is correctly scanned by the AV program.  I also have no problem receiving gmail in Outlook Express directly from pop.gmail.com, except that it is not scanned.
    Question:
    Is there now a security measure which blocks connection from Outlook Express to a pop3 server other than mail.btinternet.com, without SSL?  Or any similar explanation?
    I have taken the issue up with my AV program's help team, but they cannot so far resolve it. - I know it is not the one that BT supports.
    However, because in mid-March there was a known issue with receiving BT-yahoo mail, and as my present problem only began as soon as that issue was reported as "fixed", I am interested to know whether any update to the BT Hub at that time could have triggered my problem?
    I will be grateful for any advice.   
    Hi.
    The port number looks weird, is that what AVG requires ?
    Personally I have turned off email scanning on receipt, the AV program will check disk writes if there is a dodgy attachment. Also email scanning can seriously slow down the email fetch.
    Certainly there is nothing in OE blocking any pop3 server apart from mail.btinternet.com, if there was no one else in the world would be able to use it !
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • Wie kann ich das design von adressbuch und ical verändern?

    wie kann ich das design von adressbuch und ical verändern?

    Das design von Adressbuch und iCal kann nicht geändert werden.

  • How to design a browser-like swing app ?

    I'm about to write a browser-like application. There is a login screen and there are multiple windows much like these old web browser before they got tabs.
    - Should I extend JFrame and implement Runnable or shall I extend Thread and handle the JFrame inside ?
    - Should I put the class with generates the main window(s) inside another class which handles the number of threads and the login ?
    - Where should I put the database access ? (opening and closure of the database link ?)
    - Are there any patterns for this ?

    - Should I extend JFrame and implement Runnable or shall I extend Thread and handle the JFrame inside ?You should never extend Thread, IMO. Better to implement Runnable.
    The larger question is: Why are you making your class a JFrame and a Runnable? Where's the MVC separation here? The Runnable should be the Controller. The JFrame is View. They should be separate.
    - Should I put the class with generates the main window(s) inside another class which handles the
    number of threads and the login ?I think this is what I'd call the Controller.
    - Where should I put the database access ? (opening and closure of the database link ?)A separate object that the Controller instantiates and invokes should handle database access.
    - Are there any patterns for this ?I think MVC is pertinent, among others.

  • How to design a forum like that?

    Hello,
    I'm studying web design and forum development,
    by chance, I visited a webmaster forum http://www.webmastersun.com via google
    I really want to design a forum look like that.
    can you show me ways ? which CMS should I choose ?
    what should I know ?
    Thank much!

    It is designed using vBulletin - http://www.vbulletin.com/.But you can also use following CMS to develop sites like this:-
    Vanilla - http://vanillaforums.org/
    BBPress / BuddyPress - http://bbpress.org/
    Simple Press - http://simple-press.com/
    Mini BB - http://www.minibb.com/
    Phorum - http://www.phorum.org/

  • Application UI Design using Swing or JSP

    I am in the Design phase of my first project. the technology involved is not defined and the team(of 2) is not sure what would be best to use. we got to work on a staging table. mostly updating it. one complete partition(can have as many as 100K rows) has to be displayed in the UI. once it is updated the effected rows need to be inserted/updated to another permanent table, both in Oracle.
    so in short, the GUI should allow sorting and filtering options to the user to work on the staging table records. I am not sure how JSP's will fit into this piture. the network traffic is a big concern here.
    we might go with Swing Jtable. will that be feasible for this kind of UI? also can this be implemented using MVC(can be struts?) or just Model 1 architecture should do?
    I thought of using hibernate for the ORM but the DBA told that the schema is a bit conplex to work with hibernate. so i might be using plain JDBC prepare statements.
    can anyone put some light based on there experience.
    suggestion and views are welcome!

    Triple-post:
    http://forum.java.sun.com/thread.jspa?threadID=5246519
    http://forum.java.sun.com/thread.jspa?threadID=5246518
    http://forum.java.sun.com/thread.jspa?threadID=5246520

  • JWAX UI Framework for AJAX (Swing Like)

    Wanted to pass this along to Swing Developers.
    http://www.ajaximpact.com/detail_news.php?id=113
    JWAX is a event driven component framework modeled after Swing, SWT and other component based systems for AJAX development. It can be leveraged from client side AJAX or dynamic UI systems for development. JWAX has Object Oriented Architecture.
    It utilizes a render kit model for client code generation and provides a set of common base UI components with plans to support complex components in the future.
    JWAX Features
    - Object Oriented Architecture
    - Event Delegation Model
    - Component Inheritance and Aggregation Support
    - Cross Browser Compatibility w/ RenderKits
    - Aspect Oriented Rendering of Components
    JWAX architecture
    JWAX architecture is a component framework much like Swing, SWT, etc. It leverages an event delegation model to trigger and listen for component events. The underlying component model is rendered based on the client output type. So it's easy to customize the component view to a browser, technology or look and feel based on the renderkit chosen.

    Wanted to pass this along to Swing Developers.
    http://www.ajaximpact.com/detail_news.php?id=113
    JWAX is a event driven component framework modeled after Swing, SWT and other component based systems for AJAX development. It can be leveraged from client side AJAX or dynamic UI systems for development. JWAX has Object Oriented Architecture.
    It utilizes a render kit model for client code generation and provides a set of common base UI components with plans to support complex components in the future.
    JWAX Features
    - Object Oriented Architecture
    - Event Delegation Model
    - Component Inheritance and Aggregation Support
    - Cross Browser Compatibility w/ RenderKits
    - Aspect Oriented Rendering of Components
    JWAX architecture
    JWAX architecture is a component framework much like Swing, SWT, etc. It leverages an event delegation model to trigger and listen for component events. The underlying component model is rendered based on the client output type. So it's easy to customize the component view to a browser, technology or look and feel based on the renderkit chosen.

  • Design Mode Swing Appl

    I'm creating or generating a swing application.
    Then I do some work and add components or delete some .....
    Sometimes , I don't know when I cant't view the form after that
    in the designer window. There is only a white window.
    null

    Thomas,
    Which version of JDeveloper are you using?
    After you add/delete components, you might need to rebuild your
    project before viewing the Design tab again.
    When you say 'do some work and add components or delete some', is
    this in the same project as your swing application? In the same
    file (source tab)?
    Laura
    Thomas (guest) wrote:
    : I'm creating or generating a swing application.
    : Then I do some work and add components or delete some .....
    : Sometimes , I don't know when I cant't view the form after that
    : in the designer window. There is only a white window.
    null

  • How can I design hand logo like this?

    I want to explain how to design a hand logo like this, thank you very much.

    Have a look at this http://www.youtube.com/watch?v=-Uxl9-ktPN8 to get you started.
    For this kind of design (which CAN be designed in Photoshop) you might be better exploring Illustrator.
    Good Luck
    Cheers
    John

  • Architecture for Design in Swing

    Hi,
    I am developing a standalone application using Swing.
    It is recommended to use GridBag Layout for the design.
    Grid Bag Constraints are having 11 parameters to be set to all the components.
    which will increase the lines of code and maintainability issues may raise.
    I request, to suggest an architecture for the same.
    A sample would be helpful to us to build on.
    Thanks in advance.
    Nagalakshmi

    Having started my first Java project (and first OO for that matter) at the beginning of the year, I was tasked to redesign our current GUI (non-Java), which is almost 100 frames. After reading up on different layout managers, the consensus from the books/tutorials that I read was that GridBag was the most complex, but also the most powerful. I tried a few others, but their limitations were obvious to me in short time. Ever since I turned to GridBag, I haven't looked back.
    I suggest you do not use GridBagLayout.
    It's inconvenient.I couldn't disagree more. What's inconvenient about total control?
    You can use BorderLayout, GirdLayout and FlowLayout to
    layout component in many case.True, but I can use GridBag in all cases.
    Grid Bag Constraints are having 11 parameters to be set to all the components.
    which will increase the lines of code and maintainability issues may raise.Very true if you let a GUI builder do it for you. I prefer to whiteboard the layout of my components first, then hand-code it. I also wrote some convenience methods to help me with the constraints and sizing and such, so that I don't have 12 lines of code each time that I want to add a single component, I just have one method call.
    Since I'm running 1.4, I haven't looked at SpringLayout yet (1.5 only, I believe). If DrLaszlo is endorsing it, then that's enough for me to know that I should at least check it out.
    Good luck.

  • How to design crystal report like bellow..

    patient Name:-Basuraj Kumbhar
    1) Tablet   ABCD    10
                   At night 1 tablet.
                   Morning 1 tablet.
    2) Capsule  XYAZ  100
                   At night 2 tablet.
                   Morning 2 tablet.
    3) Syrup  JKLM   100ml
                   At night 2 spoon.
    here Tablet,Capsule,Syrup are type of medicine, ABCD,XYAZ,JKLM are name of medicine and 10,100,100ml are medicine quantity.
    I want to create report like this.
    How can create the like this.
    Thanks in advance....

    Hi Basuraj,
    Create report using below groups :
    First group on PatientName
    Second Group on MedicineType
    Now place MedicineName & TotalQuantity on second group header
    Place MedicineTime & TabletEatingQuantity on Detail section and suppress rest of the sections.
    Try to move your field positions to get better formatting.
    -Sastry

Maybe you are looking for

  • Editing online interactive forms using Acrobat XI Pro

    Our organization recently purchased Adobe Acrobat XI Pro in hopes of using it to create and convert many of our forms to electronic format.  We recently tried opening an existing online interactive form to edit it and it says "This form cannot be edi

  • How to use INVOKE function with INT parameter types

    Can you tell me how to use invoke function with int parameter type ?

  • Getting a zero value from text field

    Hi, The form has 3 text fields for Freight areas, the viewer inserts "1" in the field that is applicable to their area. The first 2 fields have a cost of $10.00 and $15.00 and the third is for pick up so there is zero cost. If they insert "1" in eith

  • Turning On Bex reporting Flag

    Hi, We have ODS size of 7 million records. The Bex reporting Flag is swithched off on this ODS and I would like ON it now. Do I have to clean the data and relaod everything back in or is it ok to switch on the Flag now and transport it? Thanks, AB

  • Saving Dreamweaver site

    Hi, I created a site for a college project, but when I uploaded it to the college computer, but when I tired to view it on the college computer, I lost all the pictures and the layout was scrambled. Can anyone help? Thanks, Don