Editing Record.

Its a simple business directory whereby i've set two forms
up, an add new record, and an edit record using PHP.
To edit a record i choose the record for a drop down
list/menu and then amend the data. However, which ever record i
select to edit on from the drop menu and then Submit it, it will
only amendment the details of the last record which was added.
Therefore its all a bit wrong.
Whys is doing this and not changing the record i've
selected?

You need to check what value you are passing to the form that
is holding the
ID of the record that you intend to update.
Paul Whitham
Certified Dreamweaver MX2004 Professional
Adobe Community Expert - Dreamweaver
Valleybiz Internet Design
www.valleybiz.net
"GD WebDev" <[email protected]> wrote in
message
news:e4sgcg$pbj$[email protected]..
> Its a simple business directory whereby i've set two
forms up, an add new
> record, and an edit record using PHP.
>
> To edit a record i choose the record for a drop down
list/menu and then
> amend
> the data. However, which ever record i select to edit on
from the drop
> menu and
> then Submit it, it will only amendment the details of
the last record
> which was
> added.
>
> Therefore its all a bit wrong.
>
> Whys is doing this and not changing the record i've
selected?
>

Similar Messages

  • HOW TO: Use Input tags to edit records

    The question has been asked, "What does using the BC4J Input data tags provide
    over standard HTML input fields?" It is true that either type of input field allows
    your JSP to take user input and update your BC4J datasource. Both types of input
    fields submit a name-value pair to a JSP processing page that bind the data with
    a datasource row and attribute. However, unless you use the BC4J Input data tags,
    users will not be able to edit data in existing records. To see the difference,
    use the JDeveloper DataPage Wizard to create an Insert Record form and an Edit
    Record form.</p>
    To create the Insert Record form:</p>
    <ol>
    [*]Use the Business Components Wizard to create an entity object and view object for a database table you can update.
    [*]In the same project or another project, if you wish, use the DataPage Wizard to create an Insert Form for the view object.
    [*]Look in your JSP project folder in the Navigator and notice that two pages were generated: one JSP to render the insert HTML form and the other JSP to process the incoming parameters.
    [*]Open the file VO_Insert.jsp and notice that it does not use the BC4J input data tags.
    </ol>
    In the Insert form, the input data tags are not needed to render static HTML form elements such as empty text fields. It is important to note, however, that the name of these text fields corresponds to the attributes of your selected view object. This is extremely important because the processing page looks for parameters corresponding to the names of the attributes to update the view object datasource.</p>
    Now, create the Edit Record form:
    <ol>
    [*]Use the DataPage Wizard again, but this time select Edit Form for the view
    object.
    [*]Open the file VO_Edit.jsp and notice that it uses the BC4J input data tags,
    which contain the prefix <jbo:Input ...>.
    [*]Look in your JSP project folder in the Navigator and again notice that two
    pages were generated: one JSP to render the edit HTML form and the other JSP
    to process the incoming parameters.
    [*]Open the file VO_Edit.jsp and notice that it uses the BC4J input data tags.
    </ol>
    In the Edit form, the BC4J input data tags are needed because in this case,
    the page has to query the current value of the record and place that data into
    the text field. The Edit form uses a second page to process the edited values.</p>
    To summarize the differences:</p>
    Use the <jbo:Input ...> data tags when you need to create an Edit Existing Record type of JSP page. This page will query the current data from the view object datasource and display it in each input field.
    OR
    Use standard HTML input fields when you do not need to query the database to show existing records. This is the case in a static Insert Record form where only empty HTML fields are rendered.
    The end goal of each Input tag is to supply a name-value pair to a processing
    page which will then update the database according to the value passed to it.
    For example in order to update the &quot;Ename&quot; column of the Emp table,
    a name-value pair such as Ename=&quot;smith&quot; must be passed via an HTML
    form to a processing page. The processing page will then be able to update the
    table with the new value of the attribute using the following code:
    <jbo:Row id="myrow" datasource="ds" rowkeyparam="MyRowKey" action="Update">
    <jbo:SetAttribute dataitem="*"/>
    </jbo:Row>
    </p>
    By setting the attribute 'dataitem=&quot;*&quot;' in the SetAttribute tag,
    it is able to update all database columns where a name-value pair is supplied.
    The SetAttribute tag must be used inside of the Row tag to allow an operation
    on a single row.</p>
    The Row tag is able to identify a specific row through the rowkeyparam attribute.
    The rowkeyparam takes the HTML request parameter that contains the value of
    a BC4J rowkey. It is the BC4J rowkey that uniquely identifies the row within
    a rowset. By default Row tag by default obtains the rowkey for the cu rrent row.
    (You can also specify the row when you want to perform a Find action as explained
    in the OTN topic &quot;How To: Navigating Using DataTags&quot;.)
    </p>

    Ok. I didn't understand your question.
    You have to do some settings for adding new  rows for the analysis grid in Analyzer. And in the new rows you can input the characteristic values. To enable the new rows
    In Analyzer - uncheck the setting Suppress New Lines in the proprties of the Analysis grid item.
    In WAD - Check the property Number of New Lines (NEW_LINES_COUNT) of Analysis grid item. You use this parameter to insert any required number of empty rows into the table. The parameter is set to 0 by default.

  • In ALV Reports, i want to edit records manually in out put display

    hello all,
    in ALV Reports, i want to edit records manually in out put display. how can i do that?

    *& Report  ZTEST1
    REPORT  ztest1.
    TYPE-POOLS: slis.
    DATA:i_sbook TYPE STANDARD TABLE OF sbook INITIAL SIZE 0,
         i_sbook1 TYPE STANDARD TABLE OF sbook INITIAL SIZE 0,
         i_fieldcatalog TYPE slis_t_fieldcat_alv,
         wa_fieldcatalog LIKE LINE OF i_fieldcatalog,
         wa_sbook TYPE sbook.
    DATA:wa_layout TYPE slis_layout_alv.
    SELECT-OPTIONS:
    s_carrid FOR wa_sbook-carrid.
    AT SELECTION-SCREEN.
      IF s_carrid IS NOT INITIAL.
        SELECT COUNT( * )
          FROM scarr WHERE carrid IN s_carrid.
        IF sy-subrc <> 0.
          MESSAGE e000(ztest) WITH 'Invalid Airline Code'.
        ENDIF.
      ENDIF.
    START-OF-SELECTION.
      SELECT *
        FROM sbook
        INTO TABLE i_sbook
        UP TO 50 ROWS
        WHERE carrid IN s_carrid.
      CHECK sy-subrc = 0.
      i_sbook1[] = i_sbook[].
      DATA: l_repid TYPE syrepid VALUE sy-repid.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name               = l_repid
          i_internal_tabname           = 'I_SBOOK'
         i_structure_name             = 'SBOOK'
          i_client_never_display       = 'X'
    *   I_INCLNAME                   =
    *   I_BYPASSING_BUFFER           =
    *   I_BUFFER_ACTIVE              =
        CHANGING
          ct_fieldcat                  = i_fieldcatalog
        EXCEPTIONS
          inconsistent_interface       = 1
          program_error                = 2
          OTHERS                       = 3
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      LOOP AT i_fieldcatalog INTO wa_fieldcatalog.
        IF wa_fieldcatalog-fieldname = 'SMOKER'.
          wa_fieldcatalog-edit = 'X'.  " REUSE_ALV_GRID_DISPLAY
    *      wa_fieldcatalog-input = 'X'.  " REUSE_ALV_LIST_DISPLAY
        ENDIF.
        MODIFY i_fieldcatalog FROM wa_fieldcatalog TRANSPORTING edit input.
      ENDLOOP.
      wa_layout-window_titlebar = 'My Title'.
      wa_layout-zebra = 'X'.
      wa_layout-colwidth_optimize = 'X'.
      DATA repid TYPE syrepid VALUE sy-repid.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = repid
          i_callback_pf_status_set = 'SET_PF_STATUS'
          i_callback_user_command = 'SUB_USER_COMMAND'
          is_layout        = wa_layout
          it_fieldcat      = i_fieldcatalog
        TABLES
          t_outtab         = i_sbook
        EXCEPTIONS
          program_error    = 1
          OTHERS           = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    *&      Form  sub_user_command
    *       text
    *      -->R_UCOMM      text
    *      -->RS_SELFIELD  text
    FORM sub_user_command  USING r_ucomm LIKE sy-ucomm
                                       rs_selfield TYPE slis_selfield.
      CASE r_ucomm.
        WHEN '&IC1'.  "Double click
          IF i_sbook1[] NE i_sbook[].
            MESSAGE i001(00) WITH 'Hmm...some data changed'.
          ENDIF.
      ENDCASE.
    ENDFORM.                    "sub_user_command
    *&      Form  set_pf_status
    *       text
    *      -->RT_EXTAB   text
    FORM set_pf_status USING rt_extab TYPE slis_t_extab.
      SET PF-STATUS 'ZSTANDARD'.
    ENDFORM.                    "set_pf_status

  • Error when calling skillbuilder popup in edit-record mode

    Apexers,
    Iam facing another issue with Skillbuilder modal page(for those who have used this plugins). Ive the CREATE part working well the problem is with EDIT part to edit records via the link i applied all the steps and clicking the edit link pops up the page but the issue is for any clicked row the parameter is not being passed and seleceted record doesnt show on the pop up page where could the problem be? though if i set it back to normal link created by the wizard the edit link works well and shows that record on the editable page.
    Apex 4.1.1/oracle 11gR2 ; issue happens in FF & IE
    any help please?
    thanks.

    Gor_Mahia wrote:
    Apexers,
    Iam facing another issue with Skillbuilder modal page(for those who have used this plugins). Ive the CREATE part working well the problem is with EDIT part to edit records via the link i applied all the steps and clicking the edit link pops up the page but the issue is for any clicked row the parameter is not being passed and seleceted record doesnt show on the pop up page where could the problem be? though if i set it back to normal link created by the wizard the edit link works well and shows that record on the editable page.
    Hi,
    How do you define the "URL Location" in the dynamic action "Settings" region when calling the plugin? Is it "Statically Defined"? If yes, please make sure that you are setting the URL to the target page correctly - you need to set the appropriate page items of the target page in the URL definition.
    If the URL is being set properly, make sure that the target page has a page process (before/after header) to load the contents correctly.
    Apex 4.1.1/oracle 11gR2 ; issue happens in FF & IE
    any help please?
    thanks.So, what happens in other browsers - chrome?

  • Error Message at Edit Recording Informat

    Hi ..can anyone help here.
    Seems like every other time I try to use my SOUNDBLASTER... I record the audio with my Creative Player software. Once complete I try to save it and I get the message window Edit Recording Information.. I get an error message window stating.
    The process cannot access the file because it is being used by another process.
    At that point it will not let me save the audio I just recorded and I have to lose it.
    THIS DOES NOT HAPPEN EVERY TIME and I do not have any other software open. Can anyone help.
    If you can I would need you to explain this in English vs computer tech language.
    Thanks anyone..its very frustrating..having to do these recordings over and over not knowing if it will save.
    Regards.Danny

    i got geforce 7800 ctx sli cards?dual core 7800 extreem procesor?and i got screeching game crashes in company of heroes?i have also had one audiable sound crash in CSS and a few in the new battlefield 942?please help?Jed

  • SOS problem using one Entity bean for editing records. please help me

    Hello
    I have one great problem using one entity bean 2.1 and i am working with this problem several days and i dont solve it.
    i am using this jb 2.1 for add new records to one oracle database and for editing records.
    I have one great problem for editing records
    I have one objets that is as one of my database table. (PersonaObj.java)
         //personaObj.java
         public class PersonaObj implements Serializable{
              private Integer id_persona; //this ishte database table autonumeric
              private java.lang.String nombre;
              now the set/get methods.
         One field of this objets (bean) is the primary key of the table, and this field is one part of the pk from the entity bean.
         From one session bean i call the entity bena passing the objet
         into the entity bean (interface) i have one methods:
              public getPersona getT56aaat04();
         public void setPersona(PersonaObj obj);
         into the entitybean bean i have:
         public PersonaEntityPK ejbCreate(PersonaObj obj) throws CreateException {
              this.setT56aaat04(obj);
              public abstract Integer getId_persona();
         public abstract void setId_persona(Integer Id_persona);
         public abstract java.lang.String getNombre();
         public abstract void setNombre(java.lang.String Nombre);
         public PersonaObj getPersona() {
              PersonaObj obj = new PersonaObj();
              obj.setId_persona(getId_persona());
              obj.setNombre(getNombre());
              return obj;
         public void setPersona(PersonaObj obj) {
              setId_persona(obj.getId_persona());
              setNombre(obj.getNombre());
    But i have one graet problem.
    adding new record to the database i runs well but if i want to edit one recor appears this error:
    => Error <=
    java.rmi.RemoteException: EJB Exception: ; nested exception is: javax.ejb.EJBException: EJB Exception: : java.lang.IllegalStateException:[EJB:010144]The setXXX method for a primary key field may only be called during ejbCreate.
    at PersonasEJB_a43o8n__WebLogic_CMP_RDBMS.setId_persona(PersonasEntityEJB_a43o8n__WebLogic_CMP_RDBMS.java:328)
    at PersonasEntityBean.setPersona(PersonasEntityBean.java:114)
    at PersonasEntityEJB_a43o8n_ELOImpl.setPersona(PersonasEntityEJB_a43o8n_ELOImpl.java:45)
    at PersonasSessionBean.editarPersona(PersonasSessionBean.java:849)
    at PersonasSessionBean_bszo9t_EOImpl.editarPersona(PersonasSessionBean_bszo9t_EOImpl.java:208)
    at PersonasSessionBean_bszo9t_EOImpl_WLSkel.invoke(Unknown Source)
    into the session bean i make this (the session recibes one PersonaObj obj):
    T56aContactosEntityLocal personaLocal ;
                   try {
                        personaLocal = personaHome.findByPrimaryKey(new T56aContactosEntityPK(obj.getId_a04()));
                        T56aaat04Obj objTmp = new T56aaat04Obj();
                        objTmp.setAp1_a04(obj.getAp1_a04());
                        objTmp.setEstado_a04("false");
                        personaLocal.setT56aaat04(obj);
    Please can you help me to solve this problem?

    Hello Werner,
    The mappings seem to be alright at a first glance.
    Have you tried out un- and redeploying your application? Sometimes values appear to be cached in the server. So if you have deployed the application before you entered DB_BANK as alias this might solve the problem...
    BR
    Daniel

  • Possible to edit recording created through LSMW?

    I created a Batch Input Recording through LSMW. In the recording, a node has got created which doesn't have an OKCode. As a result, when I process the recording, the transaction halts in between due to lack of OKCode (I have pasted a part of the recording at the bottom. The node in Bold Italic is the problem.)
    In order to overcome this issue, I have to edit the recording & remove the node completely. OR I could create an OKCode entry (for an ENTER press) in the node. But I am not able to edit the recording. I am only able to add & delete Screen fields. OKCode not being a Screen field is not available for addition.
    Does LSMW not give the functionality to edit recordings at all? If it so, how can I use an edited recording created through SHDB in LSMW?
    <u>A partial view of the recording follows:</u>
    >>>SAPLOIRB_APP03 321                                                                               
    BDC_CURSOR                     ROIRB0320-VALID_FROM
        BDC_OKCODE                     =ENTE              
        ROIRB0320-STATUS                                  
        ROIRB0320-VALID_FROM                              
    <i><b>>>>SAPMOIFA 0165                                                                               
    BDC_SUBSCR                     SAPMOIFA
        BDC_SUBSCR                     SAPMOIFA
        BDC_SUBSCR                     SAPMOIFA
        BDC_SUBSCR                     SAPMOIFA
        BDC_SUBSCR                     SAPMOIFA
        BDC_SUBSCR                     SAPMOIFA
        BDC_SUBSCR                     SAPMOIFA</b></i>
    >>>SAPMOIFA 0165                                                                               
    BDC_OKCODE                     =SAVE       
        BDC_SUBSCR                     SAPMOIFA    
        BDC_CURSOR                     OIFSPBL-PBLNR

    I went ahead & completed remaining all the LSMW steps. Then I processed the created session in foreground & tracked the OKCode on each screen.
    It ran perfectly upto the screen prior to the problematic node. When it got to processing the problematic node, the OKCode command dialog box remained empty. This is perfectly understandable since in the recording itself there is no line item for OKCode. Unfortunately, it did not skip processing and move onto the next node which had a 'SAVE' OKCode.
    This is where the transaction halted & manual intervention was required.
    Coming back to square one, I have to somehow get rid of the node or find a way to insert a OKCode line item into the recording.
    Did SAP tell you that it not possible to edit an LSMW recording? It is not possible to use an SHDB recording in LSMW either?

  • Edited recording from sattelite tv?

    Hello iMovie newbie here,
    I recorded some stuff from sattelite tv onto a dvd and now I have selected all the parts that I want (excluding adverts etc) and i'm left with 2 shows in the "my new project window" and I notice that there is a gap between both and can the 2 different shows be kind of stitched together to create one continues project when i view it or will there be a slight break between both?
    I'm just exporting this iDVD and have not viewed it how it looks yet and should I be bothered as it only looks like a small gap?
    I hope someone understands what the above is about
    Cheers

    After editing I have worked out what to do with the final video and thanks but I have one other question if someone could help.
    I chose the share option in iMovie to export to iDVD and when in iDVD is there a option so I could drop it onto a usb stick for playback instead of burning to DVD?
    Message was edited by: macbookair

  • Editing recorded DVDs

    Dear Forum,
    Next to some related questions already posted, I have another one regarding DVDs and iMovie.
    I have a DVD recorder connected to my TV set. Is it possible to load these recorded DVDs into iMovie, remove all the unwanted content (unwanted previous and following parts of TV programs and of course commercials) and then putting the cleaned part back to the DVD-RW?
    What additional SW do I need, I read something about MPEG2. Is the supplied with QuickTime Pro?
    Kind Regards
    Rob

    Leslie:
    Yesterday I posted a similar message under "ipod" - I guess I did not see the "color display" category. I gave my daughter my mini so I could obtain voice memo capability with the 20 color. Now I need to edit too. Have you solved the issue as yet? I guess none of the ilife programs can do this?
    Help is appreciated! Thanks All.

  • Edited Recording jumps back to the beginning after crop

    I have several recorded Connect meetings that have been lightly edited. The first few seconds have been removed and, on some, a few seconds in the middle have been cropped out when the speaker flubbed a word or two. I am finding that, on the ones with mid-recording crops, the playback jumps back to the begining for a few seconds and them catches up and contimues normally. Is this just a limitation of the Connect editing mechanism (as limited as it is)?
    I have tried to leave the beginning alone and just crop out the middle and it still hiccups when it hits that section. Any thoughts on this?
    Thanks!
    My Connect version info:
    7.0,723
    Connect 7.0 r. 723/c. 427912/b. Fri Jun 27 15:37:57 2008
      Presenter r. Presenter7GM
      FMS r. Mustang_Connect 3_0_0_1208
      Licensed

    Hello,
    You can set a timeout to handle what happens when no one
    interacts with the computer for a certain period of time. In your
    startMovie script, add
    on startMovie
    the timeOutLength = 60*60 --Add a length here. It is in 60ths
    of a second, so 1 minute is 60*60
    end
    Then, in a movie script, add
    on timeOut
    --Put your script here
    go to frame 1
    end
    That should be it. I realize you don't speak English well,
    but this should put you in the right direction if you don't
    understand it all.

  • [ADF-UIX] if Create record fails, it goes to Edit record, WHY????

    I must be doing something wrong, because I cant imagine that ADF reacts the way it does within my application.
    I have 2 datapages, browseDP and editDP
    I have 1 data action, createDA, I dragged the create method from my viewobject here
    The flow is as follows:
    browseDP(create button) --> createDA --> editDP
    browseDP(edit button) --> editDP
    This works fine
    But when a user presses the create button and the creation of a new record fails, the user
    will edit the record where the DB cursor is atm. But the user thinks he's adding a new record.
    You can understand that this leads to unwanted situations!
    There is no error message given to the user if the creation of a new record fails, it also doesnt
    return to the browse screen with an error message. Is this default behavoure of ADF? should I implement
    my own error checking mechanism when creation fails???
    Is there also a default flow option if a data action fails? I know success is default.
    Does anybody have some tips for me, I want to avoid the explained situation.
    kind regards
    a very frustrated developer
    Ido

    We've found solution to that problem, maybe someone will save few hours thanks to following trick:
    1. create UIX page with read-only table showing all the rows from details table
    2. Below the table put form that will let user edit currently selected row
    3. Insert "Create" submitButton in tableActions of the read-only table
    4. Button "Commit" and "Rollback" might be put below input form to save or cancel entered changes
    5. Now the tricky thing: instead of using submitButton that is binded to 'Delete' binding, do the following:
    a) created binding that deletes current row in detail table
    b) put button (not submitButton) and set it's destination property to "?event=mydelete"
    3) create event in UIX page that is called 'mydelete' and runs binding 'Delete'
    That's all - using that approach, when using clicks 'Add' and then 'Delete' he will not see JBO's saying that he didn't filled in required fields. It's a little bit obscure, but for me it's acceptable :-)
    Leszek Deska

  • Move edited recording back to meeting room recording folder?

    How can I move an edited meeting recording from my content folder back to my meeting room recording folder.
    I want to make it accessible to current registrants, plus others who will be registering over the next few weeks.  If I just add more "permissions" to the FLV file in my content folder, it won't automatically update permission for the new people who register.
    Thanks!!! 

    Nope, this is a one way move. Once it is in the Content library, it is disassociated from the Meeting and can't be put back.
    You can edit the recordings while they are in the Recordings section of the meeting room though, so you shouldn't have to move them to the Content library if you don't want to.

  • Editing record items in a multi-record block - 1 record at a time.

    Hello,
    I have the following scenario: Currently in my multi-record block, to edit an item of a record, the user has to double click on the record to enable the 'save changes' button. However, I want to turn the navigation to all other records turned off. The only way the user should be able to edit other records is save changes first, then again double click on the desired record to re-enable the 'save changes' button (at this time navigation to all other records should be turned off). ie., the user should be able to edit 1 record at a time (At any given time, I won't be having many records in the block which the user may have to modify).
    How can this be achieved?
    Thanks,
    Chiru

    That is pretty odd requirement, but this might work:
    When the user double-clicks the record, enable the Save button, and set a value in any column of the record to its current value. This will cause Forms to set the record status to CHANGED, and will not permit navigation away from the record until the When-validate-record trigger runs successfully.
    In the Save button, start a non-repeating timer to run maybe 20 milliseconds, then issue a Validate(Record_Scope); command. Check form_success then commit_form.
    In the when-validate-record trigger: Do any record validation that may be necessary, and Raise Form_Trigger_Failure if anything is wrong. Then check for the existence of your Save button's timer. If it does NOT exist, issue a message like: "You must Save the changes first" and Raise Form_Trigger_Failure; If the timer exists, do not raise the error.

  • ColdFusion Studio wizards - view/edit records & RecordMaster

    Anyone use Recordmaster wizard from back in the CF Studio
    days?? Sometimes I really miss it! Is there anything comparable
    available today for the current toolset (CFeclipse or Dreamweaver)?
    RecordMaster was a little automated wizard thing that you could
    just point to a DSN and a table, and it would build a nifty set of
    basic pages to do admin stuff, namely view, add, edit and delete
    records. Very good start to build quick and dirty admin pages, and
    super easy.
    There was even a little built in Studio wizard that would
    generate record view/edit/delete pages. All just basic cfm, no
    cfc's.
    Anyhing? I've got to build some admin type pages here on a
    table with lots of fields and don't want to do it all from scratch.
    If I can't find anything, I may search my CD archives for an old
    version of Studio just to use RecordMaster! What do others use for
    fast creation of database record admin pages???
    -Jeff

    Dan, it sounds like you never used CF Studio.
    CF Studio from Allaire, had these "wizards" that you could
    use to auto generate pages. All it needed was the ability to
    connect to a DNS and it would do its thing. simple and easy. This
    was done on the development side, the pages that were created were
    then loaded to the live server where a client could use them via a
    browser. Easy as ebay.
    Your solutions sounds like it works well for you. However it
    is not such a great solution for a basic client sitting in some
    office. SQL Plus, and Access are not something my client has or is
    interested in learning, or are we interested in changing the
    database over to Oracle.
    Does anyone on this list have a solution to ease the work
    involved in creating these "View/edit/delete" pages by hand?

  • HOW TO: Create a JSP Edit Record Form Using BC4J Data Tags

    This is a JDeveloper Tech Note found on the OTN Documentation page. This note describes the use of the BC4J data tags to create row edit/submit JSP pages. Here is the link:
    http://technet.oracle.com/docs/products/jdev/technotes/datatag_input/Edit_Form.html

    Are you using Java 1.4.* ?
    Use JFormattedTextField.
    import javax.swing.*;
    import java.text.*;
    import java.awt.*;
    import java.util.*;
    public class DateExample
        public static void main( String [] args )
          // Here's what you're interested in...
          DateFormat dateFormat = new SimpleDateFormat( "MM/dd/yyyy" );
          JFormattedTextField field = new JFormattedTextField( dateFormat );
          field.setColumns( 11 );
          field.setText( dateFormat.format(new Date()) );
          JPanel panel = new JPanel();
          panel.add( field );
          panel.add( new JButton( "Hey" ) );
          JFrame f = new JFrame();
          f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
          f.getContentPane().add( panel );
          f.pack();
          f.setVisible( true );
    }It also works with other types of Format objects (ex. Currency, Decimal, etc.)

Maybe you are looking for

  • How to see the borders of a "display area" in GridBagLayout

    I would like to see the display area of a JPanel . I use this technique: panel.setBorder(new TitledBorder(new LineBorder(Color.blue, 2), "DisplayArea?")); //Is this correct? If not, how can I see the borders of a display area (as opposed to the borde

  • How to ignore some fields on Receiver File?

    Hi folks, I have this inbound structure example: <?xml version="1.0" encoding="UTF-8"?> <ns0:MT_ObrasAdjud_Out xmlns:ns0="http://pt.edp/r3/obrasadjudicadas">   <codforn>123543</codforn>   <numdoc>000003</numdoc>   <tipodoc>CAO</tipodoc>   <encoding_s

  • Updated my firefox and it messed up my emai with knology, what to do?

    Among other changes, I can no longer used the advanced version of e-mail, only the simple version. I receive this message when trying to log-in: "Remote XUL-This page uses an unsupported technology that is no longer available by default in Firefox. P

  • Director 12 publish for iOS

    I'm using the trial version on a Windows machine but publish for iOS is disabled. Has it been disabled deliberately or do I need to be using Director on a Mac? Thanks.

  • Itunes browser window won't resize to enable license agreement for ipod

    Hi, hope someone can help me I am new to itunes and just purchased an ipod classic.Every thing is fine except I can't resize the itunes browser window to be able to read and accept the license agreement to be able to use my ipod. The document seems t