How to create a form which uses graphical user interfaces(GUI) features.

i'm working as a administrator in a private college..i have some problem..
how to create a student registration form that uses most of the graphical user interfaces(GUI) features. The form should consist of the following features:- Label, Button, Check box, Radio Button, List, Panel and Layout. The GUI features must be functional.
how to write that programme in JAVA ?
please help me to get the code..

So are you saying that this person is legitamately asking for someone to write up this student registration form, for use in some sort of production student registration application? Ok, if so, I apologize for jumping to the wrong conclusion. But, to me it sounds like a student hit the "Using Swing" chapter in the text and was given the following assignment:
For this assignment you are working as an administrator in a private college and you need to solve the following problem:
You need to create a student registration form that uses most of the graphical user interfaces(GUI) features. The form should consist of the following features:- Label, Button, Check box, Radio Button, List, Panel and Layout. The GUI features must be functional.
You have two weeks.
Now, I suppose that I could be wrong, if so, I apologize and go with the previous poster that said ask a comp sci student to do this for you.
Lee

Similar Messages

  • How to create a form which has browse option ? Then how to upload the data from the excel file to table in Oracle DB?

    Hi Everyone,
    I am new to Oracle forms. I have a requirement where user wants a form which can be used to browse a excel file from his/her system. Also after browsing the file the user should be able to load the data from the file to a table in the Oracle DB.
    Any help pointers would be appreciated.
    Thanks,
    Satya
    Message was edited by: user12098633

    Hi Marcus,
    I am using EBS (E- Business Suite) ERP and version is 11.5.10.2
    My database version is as below
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE
    11.2.0.3.0
    Production
    TNS for IBM/AIX RISC System/6000: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    I want to move csv file via EBS only. Average size of this will be max 600-700 bytes.
    Program should be in pl/sql package or concurrent program or custom .fmb (d2k forms) or custom .rdf (d2k report) or through alert. I am not using samba.

  • How to create a form by using an existing Word document.

    Just installed Adobe XI Pro.  Now trying to create a form from an existing word file.  After choosing my file I cannot click on the button (Current document).  Error message appears:  An unexpected error occurred.  PDFMaker was unable to produce the Adobe PDF.

    Try starting with the file opened in Word and creating the PDF from there. You can either use PDF Maker (Acrobat toolbar in Word) or print to the PDF printer. If that works, you can open the PDF in Acrobat and ruun the form wizard to automatically add the fields, or add them manually.

  • How to execute a sequence without using an User Interface

    Hi,
    I have programatically generated a TestStand Sequence File. I used C# and the TestStand API. I opened the .seq file in the default TestStand User Interface and the Sequence File runs perfectly.
    However, when I created a NewExecution using the Engine object created in the porgram, it seems that the sequence never starts execution. Please look at the following code snippet:
    // TSStep and TSSequence was created before 
    TSSequence.InsertStep(TSStep, 0, StepGroups.StepGroup_Main); SequenceFile TSSequenceFile = TSEngine.NewSequenceFile();
    TSSequenceFile.InsertSequenceEx(0, TSSequence);
    TSSequenceFile.Save("SeqGen.seq");  Execution TSExecution = TSEngine.NewExecution(TSSequenceFile, "Seq_0", null, false, ExecutionTypeMask.ExecTypeMask_Normal, System.Type.Missing, System.Type.Missing, System.Type.Missing);while (TSSequenceFile.IsExecuting == true) ; // this flag never changes to false  
    TSEngine.ReleaseSequenceFileEx(TSSequenceFile, 0);
    I know the sequence is not being executed because a COM Server (written as a Local Server in a .EXE) should start when the step within the sequence be executed.
    Any ideas why the sequence is not executing properly ?
    PacSoft

    Hi Pacsoft,
    Check out this example,
    I posted it in a former thread.
    Note: Also downloaded the .seq from the former thread! NEVER acept savings to Ni. -INI files !!!
    Greetings
    juergen
    =s=i=g=n=a=t=u=r=e= Click on the Star and see what happens :-) =s=i=g=n=a=t=u=r=e=
    Attachments:
    ConsoleApplication2.zip ‏55 KB

  • How to create a time event without having user interface freeze

    Hi,
    I am new to labwindows and i am trying to create a time event where every hour for 24 hours i want my program to write somethign in excel. 
    I tried using function Delay and SyncWait and those functions freezes up the user interface.
    Any tips/help will be appreciated.
    Thank You
    Solved!
    Go to Solution.

    Many, if not most, CVI developers wind up implementing a delay function for themselves that periodically, during the delay, wakes up and processes events so that the GUI isn't frozen.
    The idea is to break the wait or delay up into pieces, and process system events in between each piece.
    A timer works too, you can try the async timer that Wolfgang mentioned, it runs a bit better and on a separate thread, so it lets you do what you normally would with the main thread and the GUI, yet still get timer function.   If you use a smart delay, you still wind up doing nothing a great deal of the time, and events are only processed periodically.

  • Compliabiality of DOT NET Graphical User Interfaces (GUI) with Java

    Hello,
    At present i'm about to start learning GUI's in Java.
    I've acquired all the basic knowledge regarding Java enough to be able to learn GUI's.
    My Questions are:
    1) To begin with Learning Java GUI's, is it really necessary to learn AWT before learning Java Swing Framework ??
    2) I heard that VISUAL STUDIO of Dot Net Framework Supports advanced GUI facilities and Rich look than Java Gui's does, So can we use .Net GUI library classes to build GUI's which have to run in Java Applications???
    Also is it really true???

    Tejaswi.B wrote:
    ..is it really necessary to learn AWT before learning Java Swing Framework ??No, but note there are many (non component) parts of AWT that might be used in Swing interfaces. Fonts, Dimensions, layouts, ..
    Having said that, follow the link Darryl provided and you'll find the tutorial covers those classes (almost) as if they were Swing.
    2) I heard that VISUAL STUDIO of Dot Net Framework Supports advanced GUI facilities and Rich look than Java Gui's does, ..Where did you hear that?
    As far as I understand, there are a few components provided in .NET that are not in Swing, such as (I'm not sure what it is called) a 'switch list' where there are two lists side by side with buttons to move items from one list to the other. These components can be made from other components in Swing. I guess the Swing developers felt those components were too infrequently required to justify adding a specific component for them.
    You might also want to check out SwingX (https://swingx.dev.java.net/), which is built on Swing to provide extra components.

  • Subtyping & Creating Graphical User Interfaces (GUIs)

    What is subtyping in Java and how can it be used in Java applications. Please give some real world software applications where it might be used. What it its function or purpose primarily?

    What is subtyping in Java and how can it be used in
    Java applications. Please give some real world
    software applications where it might be used. What it
    its function or purpose primarily?Subtyping is another word for class extension. The subclass will inherit properties from the superclass it has extended according to the rules of Java. This can be used in any application written in an object oriented language. The purpose is to establish a hierarchical is-kind-of relationship between classes. For example the classes Car and Bicycle could be subtypes of class Vehicle. It's a way to model data.

  • Graphical user interface (GUI)

    am planning to make a GUI for a project. but I don't know how to make one using labview. I only found a way to save 1 file.
    The GUI needs to have a database (that can create its own folder or path to save, and can change its filename depending on the user), and can play music. What functions in VI are available that can do these?
    btw am using labview 8
    Also if there's a tutorial for this can i have its link?
    thanks in advance for the help
    Message Edited by Jpop on 07-25-2006 11:30 AM

    hello again dennis,
    i noticed that there's no red button on your "while loop" while using the event structure. i tried deleting the red button and nothing happens. and at the same time i noticed in your event structure, the subVI that's used does not have any wire connected to it, how does that make it work? and lastly, i tried to add another event to the "event structure" but i can't seem to give it a new name the one inside the " "(for example: yours started with: 0 timeout, 1 "stop" - value change, 2 "new user" - value change).
    also while reading the help and notes given. i can't seem to differentiate between the "case structure" and the "event structure"
    i tried experimenting with the example file that you have uploaded earlier, in which a file will now be added to the folder, although i am not sure on how to combine it.
    Do you have any suggestions on how to write a file even without stating the ".lvm", and can still be read by other spreadsheet programs?
    here's what my file looks like:
    Message Edited by Jpop on 07-30-2006 01:13 PM
    Attachments:
    Create File.vi ‏52 KB

  • Quick Tip: How to create editable form fields | Acrobat X Tips & Tricks | Adobe TV

    A short tip that details how to create editable form fields using Acrobat X Std. or Pro.
    http://adobe.ly/wzXkmL

    I have created a form which will be filled out by customers and sent back to me via 'submit' button. What I am trying to figure out is when we receive the filled out form, is there any way to have it as a pdf. To clarify, when the form is filled out and sent, the receiver opens the email and attached is a non-editable pdf. This way the customers information is no longer editable.

  • Is my 3GS graphical user interface the same as iPhone 4?

    I have a 3GS iPhone and am using Version 4.0.2 (8A400) of the operating system.
    Is the graphical user interface (GUI) on my phone the same GUI that you see on iPhone 4? Thanks.

    Does anyone know whether apple is developing a new UI for any iphone firmware updates? I
    Apple hasn't announced plans for a "new UI" and no one here knows anything beyond what Apple officially announces. Any Apple employes who participate here are bound by nondisclosure agreements. Also, posting rumors or speculation about Apple policies and plans is prohibited by the forum Terms of Use.
    That said, I can't think of any reason why Apple would want to develop an entire new UI for the iOS. It's safe to say it's been a resounding success as it is.

  • Am using short keyboard.  Don't know how to create plus sign which is not on the keyboard. Advice would be much appreciated.

    Am using short keyboard.  Don't know how to create plus sign which is not on the keyboard. There is no number pad. Advice would be much appreciated.

    nicholasmitaka-shi wrote:
    This is a Japanese kana input keyboard, A1242, whioch looks quite as usual except that a few functions have no space on the board and have been ommitted. 
    Is the plus sign really not available on your keyboard at the place indicated on this graphic (to the right of the L key)? You might need to use shift or alt/option or shift+alt/option.
    http://en.wikipedia.org/wiki/File:KB_Japanese.svg

  • How to create arabic forms using adobe central forms

    How to create arabic forms using adobe central forms

    Any luck here? I have just a subset of your challenge, i.e., I want to get forms designed in Designer 8.2/Acrobat 9 to work in Reader 7.0.5
    Thanks!

  • How to create a Form based on a dynamic table?

    Hello,
    The Select statement below creates a table based on a string (string is a value of an item):
    select * from table (pkg_util.fn_get_table (:P18_VALUE))I need to create a region on a page with a Form based on this table.
    I was able to create a Report, but not a Form.
    I need to create a Form, which would return updated string to the page item.
    How can I solve this please?

    Hello Gentlemen,
    I have created a Tabular Form, based on APEX_ITEM API, as you suggested, here is the code below:
    SELECT apex_item.checkbox (30,
                               CATALOG_ID,
                               'onclick="highlight_row(this,' || ROWNUM || ')"',
                               NULL,
                               'f30_' || LPAD (ROWNUM, 4, '0')
                              ) delete_checkbox,
           CATALOG_ID,
              apex_item.hidden (31, CATALOG_ID)
           || apex_item.text (32,
                              LANG,
                              80,
                              100,
                              'style="width:100px"',
                              'f32_' || LPAD (ROWNUM, 4, '0')
           || apex_item.hidden (33, wwv_flow_item.md5 (LANG, DESCRIPTION)) LANG,
           apex_item.text (34,
                           DESCRIPTION,
                           80,
                           100,
                           'style="width:255px"',
                           'f34_' || LPAD (ROWNUM, 4, '0')
                          ) DESCRIPTION
      FROM V_SYSTEM_CATALOGS_PR
    UNION ALL
    SELECT     apex_item.checkbox
                              (30,
                               TO_NUMBER(9900 + LEVEL),
                               'onclick="highlight_row(this,' || ROWNUM || ')"',
                               NULL,
                               'f30_' || TO_NUMBER (9900 + LEVEL)
                              ) delete_checkbox,
               NULL,
                  apex_item.hidden (31, NULL)
               || apex_item.text (32,
                                  NULL,
                                  80,
                                  100,
                                  'style="width:100px"',
                                  'f32_' || TO_NUMBER (9900 + LEVEL)
               || apex_item.hidden (33, NULL) LANG,
               apex_item.text
                                               (34,
                                                NULL,
                                                80,
                                                100,
                                                'style="width:255px" '  ,
                                                'f34_'
                                                || TO_NUMBER (9900 + LEVEL)
                                               ) DESCRIPTION
          FROM DUAL
         WHERE :P180_TEMP = 'ADD_ROWS1'
    CONNECT BY LEVEL <= 1however, the update process doe not work on that form:
    DECLARE
      lc_string VARCHAR2(4000);
    BEGIN
      FOR i IN 1..APEX_APPLICATION.G_f*30*.COUNT
      LOOP
          lc_string := lc_string|| '[' ||APEX_APPLICATION.G_f*32*(i) || '|' || APEX_APPLICATION.G_f*34*(i) || ']';
      END LOOP;
      --Database processing using the concatenated string here
    END;Can you please see what's wrong with the code?
    Also, I tried to set a temp. item with the value, to see if the process returns something, like that:
    DECLARE
      lc_string VARCHAR2(4000);
    BEGIN
      FOR i IN 1..APEX_APPLICATION.G_f*30*.COUNT
      LOOP
          lc_string := lc_string|| '[' ||APEX_APPLICATION.G_f*32*(i) || '|' || APEX_APPLICATION.G_f*34*(i) || ']';
      END LOOP;
         :p18_temp := lc_string;
    END;and it did not work.
    Also, it is the second Tabular Form on this page. The first one is created using wizard, and it works perfect, with the same update process:
    DECLARE
      lc_string VARCHAR2(4000);
    BEGIN
      FOR i IN 1..APEX_APPLICATION.G_f*01*.COUNT
      LOOP
          lc_string := lc_string|| '[' ||APEX_APPLICATION.G_f*03*(i) || '|' || APEX_APPLICATION.G_f*04*(i) || ']';
      END LOOP;
      --Database processing using the concatenated string here
    END;Also, both forms are opening in a modal pop-up dialog window.
    I use a Dialog Region plug-in for that.
    May be this is causing a problem?
    But still, the first form works fine!?

  • How to create a adobe ebook using livecycle desinger ES3 version?

    How to create a adobe ebook using livecycle desinger ES3 version

    LiveCycle Designer is used for designing Forms, not eBooks.
    The requirements of designing a book (ebook or otherwise) are not going to be meet by LiveCycle. You need functions like pagination and indexing.
    A better choice would be to use InDesign, or even a word processor like Microsoft Word, and convert to PDF when finished.
    You can read more about eBooks and the Adobe Digitial Publishing Platforms here:  http://www.adobe.com/digitalpublishing/ebook/
    At the bottom of this webpage are Resources which may help you understand the requirements of digitial publishing.
    Hope this helps,
    -Michelle

  • How  to do standard form modification using NACE

    hi gurus
    can any one suggest me
    how to modify standard form layout using NAce
    please send any examples if possible.
    thank you
    regards
    kals.

    Hi,
    goto NACE
    there depending on the functionality  select the  application.
    for Sales u have Application V1
    for purchase order u have application EF
    select one application and click on output types pushbutton
    for an example select EF application and click on output types
    now u get different output types select NEU new PO printout
    and double click on the processing routine folder on the left hand side of the screen
    Now u get the different processing routines .
    in that u have print output there u can see form routine and FORM .
    HERE U CAN GIVE UR OWN FORM WHICH IS CREATED IN SE71 BY DELETING THE STANDARD FORM.
    reward if helpful
    raam

Maybe you are looking for

  • I am willing to buy an ipad2 wifi  3G  and I'm going outside USA how am I supposed to unlock it

    I am willing to buy an ipad2 wifi  3G  and I'm going outside USA how am I supposed to unlock it

  • ME returned a temporary error

    I've been receiving the "ME returned a temporary error" message after I have been using my iPad for a few mins. What is causing this error and how can I fix it. Pierre

  • Setting up paypal buttons in iweb?

    This is probably a relatively easy thing to do, but I know very little about this "Internet" thing. All I'm trying to do is set PayPal up on my little iweb website (www.thegirlandrhino.com). How do I "paste code into my website's HTML code?" If it he

  • Kevin

    My I Pad screen doesn't rotate anymore. Are there any suggestions  ?

  • Un-installing a package

    hi all, i installed a garageband jam pack disc 1 which i borrowed from a friend....not knowing i needed to install disc 2, which i dont have.....i wanted to know how to unistall this....i can see in my library/receipts that receipt is there...but how