Is there a tutorial for building a form?

I am a newbie who needs to develop a display-only form. Is there a tutorial on this topic?
Thanks, Wayne

Take a look at the 10g forms demos..
10G forms
http://www.oracle.com/technology/sample_code/products/forms/index.html
9i forms
http://www.oracle.com/technology/sample_code/products/forms/index9i.html
6i forms
http://www.oracle.com/technology/sample_code/products/forms/6idemos.html
Message was edited by:
Mark Reichman

Similar Messages

  • Any tutorial for building adapters and routing services for JBI container ?

    Hi
    Thank you for reading my post
    is there any tutorial for Sun JBI container ?
    I want to know how i can build/deploy JBI components like adapters and routing service for Sun JBI container .
    another question is that , is it based on OpenESB ?
    thanks

    You can find a white paper on writing a JBI service engine here:
    http://java.sun.com/integration/reference/techart/DevelopingAServiceEngineComponent-1-2.pdf
    Also, there is a lot of information on JBI and Open ESB here:
    http://java.sun.com/integration/
    You ask if the Sun JBI container is based on Open ESB - it's actually the other way around: Open ESB is based on the Sun JBI container. The JBI container is a JSR208-compliant implementation, and Open ESB builds upon that implementation to add full ESB capabilities.
    hope this helps -
    mark

  • In the Apps "Pages" is there a tutorial for the Business Cards Templet?

    In the Apps "Pages" is there a tutorial for the Business Card Templet?

    Peter I see you are humble, as my self. I don't see a way to easily fill all the individual cards on the templet. Pages '09 version 4.1 (923)
    I first started using Business Card Templets with Microsoft Publisher back in 2000. Initially I filled out a business card and was given a choice to print 8 or 10 cards to a page. Since then I have been out of the loop due to illness, Pages '09 give me the choice to print 8 and 10 cards to a page but I'm missing the initial step.   laughing about it but confused too

  • Is there a tutorial for layers for dummies

    I have been messing with ps for a long time but avoiding anything to do with layers...I guess it is time to learn...Is there an easy way to learn layers  ie making a layer, saving a layer, editing layers ...in my advancing years we have to go slow..So is there a tutorial for layers for dummies??
    Capt Marvy

    Bill, I came to Photoshop from the Amiga 1000 with Delux Paint, an application years ahead of its time, that would do animated 3D graphics, and with a cheap genloc, overlay them onto video.  Photoshop had reached version 4 by the time I switched, and I have always been a Windows user anyway.  You were spot on about when Layers were introduced though.
    Capt, if you find, and like, Matt Kloskowski's book, then you might like to follow the Photoshop Guys on Photoshop User TV   That is an amazing free resourse, and there are over 300 episodes now.  Scott Kelby has got together one heck of a team over there, with as well as Matt and Scott Kelby himself, of course, there is Cory Barker of Planet Photoshop which is a first class resource all by itself. 
    I find video tutorials more accessible than books nowadays, because my eyesight is none too flash, which reminds of another worthwhile resource (and I am not being rude when I say)  You Suck at Photoshop.  These are hilarious, but also full of great content.  In fact Donny would be right at home in this group as he often dreams up clever ways to use Photoshop tools.  The way he makes the train disapear into the distance in his Vanishing Point video is just one example.

  • CS3 and CS4 - Is there a tutorial for Warp in Photoshop?

    Is there a tutorial for Warp in Photoshop? I am trying to use warp to curve a flat label into a rounded one (with the curve being like the lower half of a circle as if you are looking at the bottom from a slight top view). So far, visually, the top curve is warping in the middle but the edges are staying kind of straight so it gives a funny curve. Thanks.

    More than half a million hits here:
    http://www.google.com/webhp#hl=en&q=photoshop+warp+tutorial&aq=2&oq=Photoshop+warp+&fp=dwg rkbI8CUU

  • Is there any tutorial for using ARM cortex-A processors of Zynq for digital signal processing ?

    Hello, everyone.
    Is there any tutorial for using ARM cortex-A processors(such as A9 and A53) of Zynq to deal with digital signal processing  problems?
    Please tell me , thanks.

    Hi
    Check below links
    http://www.xilinx.com/training/zynq/software-acceleration-for-dsp-functions-with-zynq.htm
    https://www.youtube.com/watch?v=ErEG7ZREcJQ
    http://www.xilinx.com/support/documentation/application_notes/xapp1170-zynq-hls.pdf
    http://www.xilinx.com/support/documentation/application_notes/xapp890-zynq-sobel-vivado-hls.pdf
    http://www.xilinx.com/support/documentation/application_notes/xapp1167.pdf

  • Is there a tutorial  for a beginner  on Adobe?

    Is there a tutorial for a beginner  on Adobe's  use , reason  I  want it, and  a comprehensive explanation of what is is?

    Not really. It's up to you to know why you want it.
    Why would you want an explanation of what it is?
    Sounds like an exam question.
    What is your specific need? Perhaps we can help you solve it.

  • Is there a tutorial for uploading fill- able forms to website and making them submit-table?

    I want to upload a couple of fillable forms (pdf's) to website and allow customers to fill and submit. Is there a tutorial out there for this that someone could point me to? I can't seem to find one that really answers my questions.

    A problem you'll encounter with those types of forms is security when transmitting the data. Obviously, the forms will contain sensitive information, and using email or a non-secure posting to a web server would not be acceptable. I personally would not send such data that way.
    It's possible to set up the form and web server so that the data is submitted securely. If your web server can handle that, it would be the best way to go. You would have to somehow program the web server to manage it all. Now I'm being vague, but that's because there are a lot of details to consider.

  • Is there any tutorial for jms development with jdeveloper out there ?

    Hi
    Thank you for reading my post
    is there any tutorial which show us how to use jdeveloper +oc4j for JMS stuff ?
    I mean an end 2 end tutorial to build mdb+jms resources in oc4j + client
    it will be far better if the tutorial shows how we can use jdeveloper features for this task (if it provide any wizard...)

    This is an example of a client:
    public String listeningJMS (Context context) throws Exception
    String topicName = "jms/demoTopic";
    String topicConnectionFactoryName = "jms/TopicConnectionFactory";
    TopicConnectionFactory topicConnectionFactory = null;
    TopicConnection topicConnection = null;
    TopicSession topicSession = null;
    Topic topic = null;
    TopicSubscriber topicSubscriber = null;
    TextMessage message = null;
    String fileName = null;
    * Look up connection factory and topic. If either does
    * not exist, exit.
    try
    topicConnectionFactory = (TopicConnectionFactory)
    context.lookup(topicConnectionFactoryName);
    topic = (Topic) context.lookup(topicName);
    * Create connection.
    * Create session from connection; false means session is
    * not transacted.
    * Create subscriber.
    * Register message listener (TextListener).
    * Receive text messages from topic.
    * When all messages have been received, enter Q to quit.
    * Close connection.
    topicConnection =
    topicConnectionFactory.createTopicConnection();
    topicSession =
    topicConnection.createTopicSession(false,
    Session.AUTO_ACKNOWLEDGE);
    topicSubscriber =
    topicSession.createSubscriber(topic);
    topicConnection.start();
    System.out.println("Receiving: ");
    TextMessage msg = (TextMessage) topicSubscriber.receive();
    String xmlString =msg.getText();
    topicConnection.close();
    System.err.println("Received: "+xmlString);
    fileName = this.getFileName(msg.getText());
    } catch (Exception e) {
    throw e;
    } finally {
    if (topicConnection != null) {
    try {
    topicConnection.close();
    } catch (JMSException e) {throw e;}
    return fileName;
    public static Context getInitialContext() throws NamingException {
    Hashtable env = new Hashtable();
    // Standalone OC4J connection details
    env.put( Context.INITIAL_CONTEXT_FACTORY, "oracle.j2ee.rmi.RMIInitialContextFactory" );
    env.put( Context.SECURITY_PRINCIPAL, "oc4jadmin" );
    env.put( Context.SECURITY_CREDENTIALS, "welcome1" );
    env.put(Context.PROVIDER_URL, "ormi://localhost:12401");
    //env.put(Context.PROVIDER_URL, "ormi://localhost:23791");
    return new InitialContext( env );
    }

  • Is there a tutorial for the iMovies App for the iPhone?

    I cannot figure out all of the features and things that are not there that make to have. In other words, it's not all intuitive. Does anyone have some good tutorial for us to use? Also, is this app it? I mean, are there other features or plug-in's or extensions that I can buy to get more transitions, themes, etc.? How do I fade the audio on the music and get more that 1 song track on there? Can I add a specific song to each video clip? Is there a way to put some text in the middle of clip or just at the end without having a completely different clip? Maybe I am asking too much, but any help would be appreciated. Thanks.

    Thanks for the good info. I think I was hoping for a few more features, even though it is pretty nice for a phone app. It would be nice to some additional granularity of control and more options for themes and transitions. Maybe, Apple will consider that as another version/pro version of iMovies/or add-on... hint, hint... wink, wink... nudge, nudge... know what I mean, know what I mean, eh?!?! Yes, that was a reference to Monty Python!
    Message was edited by: riversen

  • Is there any tutorial for integrating struts with hibernate using JDevelope

    Hi Everybody
    I am using Jdeveloper...and I want to know is there any tutorial available for usinfg struts and hibernate.
    If anybody knows abt them...plz tell me the links.
    Thanks and Regards
    K Sreenivas

    A tutorial about using hibernate in JDeveloper is here:
    http://www.oracle.com/technology/pub/articles/vohra_hibernate.html
    There are many papers and tutorials about Struts in JDeveloper - just go to the tutorials page and technical papers pages linked from the JDeveloper home-page.

  • Tutorial for simple login form

    Can anyone post a link to a tutorial for a simple login form in Oracle form devloper 10g?
    Thanks,
    Va
    Message was edited by:
    user450092

    > 1. When I enter the correct username and password, it
    just drops me back
    > into the login page.
    This - header("Location=
    http://thenewpage.com");
    should be this - header("Location= thenewpage.php");
    > 2. When I enter the incorrect username and password, it
    drops me back into
    > the login page without the error message.
    Post the rest of the form, please.
    (Now I'm really off for the Philles game!)
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Virginia Carter" <[email protected]> wrote in
    message
    news:g0pibi$lu2$[email protected]..
    > I'm trying to create a simple login using a form and php
    and am having
    > difficulty in troubleshooting - if someone could give me
    a little help, I
    > would greatly appreciate it.
    >
    > Here is the code:
    >
    > <?php
    >
    > $error = FALSE;
    >
    > if (isset($_POST['client_password']) &&
    isset($_POST['client_username']))
    > {
    > if (($_POST['client_password'] == 'blah') &&
    > ($_POST['client_username'] == 'blahblah')) {
    > header("Location=
    http://thenewpage.com");
    > exit();
    > }
    > else {
    > $error = "<h2>You have entered an incorrect
    password/username.
    > Please try again.</h2>";
    > }
    > }
    >
    > ?>
    >
    > (and in the document body)
    >
    > <?php echo $error?$error:''; ?>
    > <form method="POST" action="<?php echo
    $_SERVER['PHP_SELF']; ?>"
    > name="form1
    > " id="form1">
    > <rest of form follows here>
    >
    > In testing this page in the browser:
    >
    > 1. When I enter the correct username and password, it
    just drops me back
    > into the login page.
    >
    > 2. When I enter the incorrect username and password, it
    drops me back into
    > the login page without the error message.
    >
    > Thanks in advance.

  • Is there a tutorial for the ipad air

    I have  a new ipad air, is there a tutorial that shows all the tips and tricks once it is set up?

    Start here:
    http://www.apple.com/support/ipad/
    I honestly wouldn't spend $8 on a video when there are hundreds on YouTube available for free.

  • Tutorial for Building Mobile Web Applications Using ADF/BC4J-problem

    This is the tutorial for:
    Develop a offline, Web-based Disconnected Mobile application
    Trying to create an offline mobile application using jdeveloper & oracle lite. I want to be able to update the home database after using the application in a disconnected fashion. I do not have a web site, nor is that a feasible option.
    Jdeveloper 10.1.3.4 which should be OK as it is higher than the release specified in the tutorial.
    webtogo
    oraclie lite 10
    oracle 10.
    I have tried to follow the tutorial completely and I can not get this to connect from webtogo. It runs fine in the jdeveloper usising the container. I created the war file, did the wtg packaging process, opened the mobile manager and published the application & granted access to user 'john'. The samples provided work fine. The new application appears on the webscreen after installing web 0c4j. When I click on it, the address toolbar shows:
    http://localhost/webtogo/bc4jtutorial/faces/CustomerOrders.jsp
    When it installed mobile client, it installed the CustomerOrders.jsp into:
    E:\mobileclient\mobile_client_oc4j\j2ee\mobileclient\applications\mobileclient\bc4jtutorial
    an example of the samples that work shows
    http://localhost/webtogo/sample6/list
    in the browser address line.
    Which looks like it's really
    E:\mobileclient\mobile_client_oc4j\j2ee\mobileclient\applications\mobileclient\samples\sample6
    on the file system
    Any one have any ideas? I'll take another solution if someone has found one. However, i am not a great java programmer so thought jdeveloper was great to create forms and access the database.
    Theo Korol
    [email protected]

    Hi,
    selecting a session bean, this option shows for me in 11.1.2. Make sure that - by accident - you don't select the local or remote interface class
    Frank

  • FAQ: Are there best practices for building projects within the 20 page/state limit?

    The 20 page/state limit in Flash Catalyst is there to prevent Catalyst (and your finished application) from running slowly. You can however build efficient applications that have more than 20 states by using custom components. Custom components can contain states as well; so by creating an app that has several states, and using custom components that have states, you can get more unique views of your app while keeping it efficiently built.
    Try this:
    1. Select some of your arwork where you need more states. Right click and choose "Convert to Custom Component"
    2. Double-click to edit the custom component. Note that you can now create states in the custom component. Try creating a few states here.
    3. To exit editing the component, double click a blank area on the artboard.
    4. If you try creating an "On click transition to state" interaction now you will see that you can choose from both the states of the application as well as the states of the custom component.
    Answered by: Ty Voliter. See entire discussion.
    More help:
    Video tutorial on custom components
    Video/demo discussing the benefits of "pushing interactivity down" into custom components, by Ian Giblin @ MAX 2009
    (jump to the 11:15 mark, and watch through to about 20:30)
    Another forum post by Ty:
    Here's an ASCII diagram to illustrate one way of pushing application or top-level pages/states down into a custom component:
    Before:
    State1     State2     State3     State4     State5     State6     State7...
    After (project refactored to push three top-level states down into a custom component):
    State1     State2     State3      State7...
                        |
      Custom Component
    State4     State5     State6
    For some projects this can be an inconvenient workaround, and for others it can really clean things up by reducing complexity. If you have several top-level pages in your app that are completely different than other pages (for example, they don't share any objects with the other states) than pushing these down into a custom component makes things a lot more manageable in Catalyst. The layers panel, for example, shows all objects across all states-- this is useful when your states share many objects. If however, your states don't share a lot of objects, the layers panel can get a bit unmanageable. Refactoring into a custom component allows you to fix this by grouping content into a container.

    The 20 page/state limit in Flash Catalyst is there to prevent Catalyst (and your finished application) from running slowly. You can however build efficient applications that have more than 20 states by using custom components. Custom components can contain states as well; so by creating an app that has several states, and using custom components that have states, you can get more unique views of your app while keeping it efficiently built.
    Try this:
    1. Select some of your arwork where you need more states. Right click and choose "Convert to Custom Component"
    2. Double-click to edit the custom component. Note that you can now create states in the custom component. Try creating a few states here.
    3. To exit editing the component, double click a blank area on the artboard.
    4. If you try creating an "On click transition to state" interaction now you will see that you can choose from both the states of the application as well as the states of the custom component.
    Answered by: Ty Voliter. See entire discussion.
    More help:
    Video tutorial on custom components
    Video/demo discussing the benefits of "pushing interactivity down" into custom components, by Ian Giblin @ MAX 2009
    (jump to the 11:15 mark, and watch through to about 20:30)
    Another forum post by Ty:
    Here's an ASCII diagram to illustrate one way of pushing application or top-level pages/states down into a custom component:
    Before:
    State1     State2     State3     State4     State5     State6     State7...
    After (project refactored to push three top-level states down into a custom component):
    State1     State2     State3      State7...
                        |
      Custom Component
    State4     State5     State6
    For some projects this can be an inconvenient workaround, and for others it can really clean things up by reducing complexity. If you have several top-level pages in your app that are completely different than other pages (for example, they don't share any objects with the other states) than pushing these down into a custom component makes things a lot more manageable in Catalyst. The layers panel, for example, shows all objects across all states-- this is useful when your states share many objects. If however, your states don't share a lot of objects, the layers panel can get a bit unmanageable. Refactoring into a custom component allows you to fix this by grouping content into a container.

Maybe you are looking for

  • Server monitor not working (hardware monitor)

    Just finnished installing my brand new maxed out Intel Xserves. And the Server monitor isn't working. This thread: http://discussions.apple.com/thread.jspa?messageID=643361 Didn't solve my problem. hwmond is running on the Xserves but each server lin

  • Error Message while confirmation

    Hi Gurus , While doing confirmation i am getting this error  ' Plant 1000 is not the only plant assigned to valuation area 1000' It the error ask me to exist . Because for taht i am not able to confirm the porodcution order . I have define the new or

  • Compressor Closes Final Cut Pro 6 Project

    This problem has just started happening: when exporting a sequence from within Final Cut via Compressor, using established built-in and custom settings (that worked last week!), Compressor begins to process the batch, but then Final Cut's window flas

  • Core Duo Macbook Pro will not shut down

    For some reason, my computer no longer lets me shutdown, restart, or logout. Has anybody had a problem like this? Jon

  • In iMovie '08, how do I display the timestamp on my video?

    I have a MacBook from June 2008 with iMovie '08 7.1.4 and I need to be able to create movies and display the date and timestamp on the movies - the way it shows on my camera when I'm recording or viewing clips. I've read every thread and forum I can