10g Layout Extension

In 10g preview (9.0.5.0.0 Build 1375) there was support for configurable IDE layouts under Tools->Preferences->Layouts. In 10g (9.0.5.1 Build 1605) this feature is gone. Is there some way to configure this to work again? I have tried migrating from a previous version and starting a new install. Neither brings this feature back.
This was a nice feature it would be great to return it to the product.

Is there any chance that feature could be returned to the product? Also, is there any work-around that would allow me to restore the layout to the JDeveloper default?
This feature very useful. For instance, I prefer a different editing view when doing code reviews. I use another view for doing day to day coding. Also, I have two monitors, but when I access my computer remotely I can only utilize one monitor. The custom layout feature allowed me to have single and dual monitor layouts. It allowed me to easily switch between the two. In the current product, if I move one of the windows to the second monitor and forget to return it, there is no way to restore that window to the primary monitor.

Similar Messages

  • Installing the Oracle JDeveloper 10g Portal Extension

    i have followed all the steps to install jdev portal extension but i am not able to see Java Portlet and Oracle PDK Java Portlet portlets in web tier..what could be the reason

    Hi,
    Did you notice any errors during the installation ? i.e, when you install the Portal Addin Jar File..
    Regards,
    Sandeep

  • JDev 10g, VO Extension is giving error

    When I tried extending the seeded VO, its giving error at "Step 4 of 7". Error is "Each row in the query result columns must be mapped to a unique Query Attribute in the Mapped Entity Columns"...Even I dont modify the base query, its giving the same error. Any solution?
    Thanks
    Raj

    Its JDev10g bug...VOs with transient columns will give such error. To solve, that try renaming the alias name in sql query. Eg: PeopleName => change this alias to People_Name

  • NetBeans 5.5. + layout - how can I make a jar?

    1. I try to build my application.
    2. I've developed it in NetBeans 5.5
    3. I ve used form as a base for my GUI
    4. I've made application with help of GUIBuilder+some swing components I create dynamically during program execution.
    The problem:
    I can't make runnable JAR.
    When I try to launch project.jar form folder /dist I get message:
    "No main class found"
    I need to have these jars (they are in my project's library section:
    1.swing-layout-1.0.1.jar
    2. AbsoluteLayout.jar
    I found a solution:
    How can I package the swing-layout-version.jar library
    into my application JAR?
    Having developed your Swing application in Matisse (using the "Free Design" layout) you can
    package the required swing-layout-version.jar library inside your application JAR file.
    Requirements:
    ● Standard Java project
    ● Swing Layout Extensions library included in your project's classpath
    Open your project's build.xml from the Files tab and insert this:
    <target name="-post-jar">
    <jar update="true" destfile="${dist.jar}">
    <zipfileset src="${libs.swing-layout.classpath}"/>
    </jar>
    </target>
    Just press F11 to build your project as usual. This Ant target will bundle swing-layout.jar
    inside your distribution JAR file.
    You can adapt this Ant target to different requirements.
    So I've inserted this code into my build.xml
    Size of built project jar file increased.
    I try to lauch it and I get no message. Nothing happens.
    What else I have to do if I want to get distributable jar....?

    So I found a problem.
    Jar with main class created using GUIBuilder (NetBeans) doesn't launch.
    I use netbeans 5.5. + jdk 1.6.
    If I launch jar with frame-based main class - everything works.
    If I try to launch form-based main class - it doesn't work.
    I do not get any error message or something like that.
    What it can be?

  • Applet does not load on app server when Free Design Layout

    Hi,
    I have to embed a an applet in a webpage of an web application. Before I go on to anything.. let me first tell you, I am using Netbeans 6.0
    As shown in the tuorial:
    [http://www.netbeans.org/kb/articles/tutorial-applets-40.html]
    1. I first made the "Applet" source say HelloApplet. java. After compiling and running it I get the HelloApplet.jar.
    2. I created a WebApplication and then from the properties -> packaging -> I "Add Project" HelloApplet.jar.
    3. Then I a webpage I "embeded" the applet.
    4. I run the web app and the applet gets loaded and everything is just fine.
    But before I go on I must tell you that the applet was designed in Null Layout. Now I edited the applet source once again and changed the layout to Free Design Layout*. ( this is available from Netbeans..on the HelloApplet.java .. go to the design view.. right click on the form and from the context menu you can change the layout to FreeDesign or whatever you might want).
    When I expand the "Libraries" node I see the that the library Swing Layout Extensions - swing-layout-1.0.3.jar has been added.
    When I "run" the "HelloApplet.java" file, the applet is shown in the appletviewer. No problems with that.
    But!
    When I try to Clean & Build and Run the WebApplication, the applet does not get loaded. On inspecting the java console I see the following error:
    java.lang.NoClassDefFoundError: org/jdesktop/layout/GroupLayout$Group
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
    at java.lang.Class.getConstructor0(Unknown Source)
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.ClassNotFoundException: org.jdesktop.layout.GroupLayout$Group
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    ... 10 moreIt clearly shows that the Free Design Layout has something to do with the GroupLayout which can be found by expanding the "Swing Layout Extensions - swing-layout-1.0.3.jar". Now when the HelloApplet.jar is created only the HelloApplet.class file gets included together with some other data but NOT the swing extensions. Hence when I run the web app the class file looks for the GroupLayout.class definition but can find it in the jar as its not included when the HelloApplet.jar is created.
    But with null layout there isint a problem because null layout takes the definitions from the JRE on the machine.. and so it runs without a hitch.
    My Question is : How can I run the applet with Free Design Layout? or is it possible to package the swing layout extensions in the HelloApplet.jar?<</u>
    Thanks for all your replies.
    Cheers.
    Edited by: arijit_datta on May 15, 2008 4:07 PM

    Solved.
    Here is the solution:
    [http://www.nabble.com/Applet-does-not-load-on-app-server-when-Free-Design-Layout-to17259115.html|http://www.nabble.com/Applet-does-not-load-on-app-server-when-Free-Design-Layout-to17259115.html]
    Cheers..
    Edited by: arijit_datta on May 16, 2008 7:41 AM

  • XBRL Data in XML DB(10g)

    Hi,
    We want to load huge XBRL data in XML database(10g). Can you please advise whether it’s possible in 10g ? And any difficulties /challenges to fetch/retrieve the XBRL data (2 to 5gb data) of nearly 600 to 700 columns.
    Also are there any XBRL Extension patches available for 10g (XBRL Extension to Oracle Database 11g Release 2. XML DB)
    Also having issues while registering the xbrl xsd in oracle XML db(10g). Please help to register the xbrl xsd(taxnomy-2.11) and load the xbrl data in 10g.
    Begin
    DBMS_XMLSCHEMA.registerSchema(
    schemaURL => 'http://www.w3.org/2001/XMLSchema',
    schemaDoc => bfilename('CEISDIR','acra-taxonomy-2009-v2.11.xsd'));
    End;
    ERROR at line 1:
    ORA-31154: invalid XML document
    ORA-19202: Error occurred in XML processing
    LSX-00023: unknown namespace URI "http://www.xbrl.org/2003/instance"
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 37
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 61
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 126
    ORA-06512: at line 2

    You will have to download and install the no cost option called "XBRL Extension" in the XMLDB environment. The Oracle XMLDB XBRL Extension only works in Oracle Enterprise Edition databases version 11.2.0.2.0 and up. To get information about this functionality and how / where to download it have a look at
    - http://www.oracle.com/technetwork/database/features/xmldb/index-087631.html
    - http://www.liberidu.com/blog/2011/01/05/oracle-xbrl-extension-ready-for-download
    Regards
    Marco

  • Running a NetBeans 5.5.1 GUI in Java 1.5?

    Hi everyone, thanks for your interest.
    I've created a GUI in NetBeans 5.5.1 using the Group Layout package, which is included in Java 1.6.
    The only problem is I need this app to run in a Java 1.5 environment.
    I'm not an expert at this but after extensive searching it looks like I can import a .jar file to make everything work again?
    The problem is I add this swing-layout-1.0.jar to my class path but in the source file for my application it refers to these classes by javax.swing.________ and not by the org.whatever that the .jar I took uses. Futhermore, there seem to exist some differences between the classes in the javax.swing and my .jar file.
    Is there ANY way for me to make all this java 1.6 code to run in java 1.5. Perhaps by including some extra package?
    If so, where would I find such a package?
    If you don't think this can be done please let me know so I can stop bashing my head against the wall.
    Thanks,
    Craig

    From this URL
    http://java.sun.com/developer/technicalArticles/tools/nb_guibuilder/
    The Free Design layout has been available since NetBeans IDE 5.0. NetBeans IDE 5.0's GUI Builder provided support for this layout strategy by using a separate library called the Swing Layout Extensions. The IDE provided that library because the support for the underlying GroupLayout layout manager was not yet part of the core Java platform in J2SE 5.0. The Swing Layout Extensions are still available, but now that functionality also exists in the core libraries of the Java SE 6 platform.
    You can use NetBeans IDE 5.5 to develop applications and UIs for Java SE 6 or earlier Java platform versions. If you write applications for any platform version prior to Java SE 6, you must continue to use the Swing Layout Extensions. However, the new GUI builder can also generate your UI using the layout manager functionality supported in the Java SE 6 platform. In the latter case, you do not need to use or include the layout extensions in your final product.
    If you create a new project in NetBeans IDE 5.5 and your target platform is Java SE 6, the GUI builder will automatically generate your UI using the Java SE 6 platform's core libraries. However, if you import an old project into NetBeans IDE 5.5, you should manually update the project's layout to use the new Java SE 6 platform libraries. Of course, you can still use the layout extensions if you like, but doing so is not necessary with the Java SE 6 platform.
    You can change the Layout Generation Style for your UI by accessing the properties for your form. In the NetBeans IDE GUI Builder main window, make sure the Design mode is active. This shows your UI design graphically in the Design pane. Click on the form in the Inspector pane to see the form's properties. One of the properties is Layout Generation Style. You can select either Standard Java 6 Code or Swing Layout Extensions Library. Changing this setting does not affect how your UI will look, but it does change how the GUI builder generates the code to create the UI. Figure 16 shows the Layout Generation Style property.

  • How to insert serial no for purchased FlexiLayouts after crash Windows 7

    After PC complete crash, reformat and reinstalling  products, I have Dreamweaver FlexiLayouts but I get a message saying "This page was created using Flexiversion trial version. Not for commercial use".  I paid for this FlexiLayouts and have email acknowledging this.  I tried to register this product in my Adobe account by inputting the serial number, but it would not take it. I want to update my client's websites using FlexiLayouts.  Please help.

    Adobe doesn't make the Flexi CSS Layouts extension.  It's created by a 3rd party developer.  Have you contacted Extend Studio about this yet?
    Using Flexi CSS Layouts Dreamweaver extension for the first time
    Nancy O.

  • Layer Positioning For IE and Firefox

    Im using Dreamweaver 8. Im trying to position a flash file at
    the center of the top of the page, and at the bottom of the page.
    but for some reason its only laying out properly in Internet
    Explorer. i was using Project Vii's Screen Layout extension. For
    some reason in Firefox the layer at the bottom of the page is
    positioned strangely. like it is too low or something or that its
    trying to position at the very top of the layer instead of the
    bottom - i want the bottom flash file to overlap the top one when
    clicked - u can take a look. check it out in IE and Firefox.
    anyhelp is greatly appreciated.
    http://www.johnniewang.com/tests/mainswf.html

    Get rid of the Layout Designer and take a look at how I did
    it here -
    http://www.murraytestsite.com/mainswf.htm
    It's way simpler.
    In addition, I'm not sure what you are describing, but could
    this be your
    problem?
    <param name="wmode" value="transparent" />
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "raverdx" <[email protected]> wrote in
    message
    news:e5n7qb$q99$[email protected]..
    > Im using Dreamweaver 8. Im trying to position a flash
    file at the center
    > of the
    > top of the page, and at the bottom of the page. but for
    some reason its
    > only
    > laying out properly in Internet Explorer. i was using
    Project Vii's Screen
    > Layout extension. For some reason in Firefox the layer
    at the bottom of
    > the
    > page is positioned strangely. like it is too low or
    something or that its
    > trying to position at the very top of the layer instead
    of the bottom - i
    > want
    > the bottom flash file to overlap the top one when
    clicked - u can take a
    > look.
    > check it out in IE and Firefox. anyhelp is greatly
    appreciated.
    >
    > <a target=_blank class=ftalternatingbarlinklarge
    > href="
    http://www.johnniewang.com/tests/mainswf.html
    > ">
    http://www.johnniewang.com/tests/mainswf.html
    > </a>
    >

  • Workbooks not opening from a Business Server Page (BSP)

    Hello Experts,
    I need help with opening workbooks from a Business Server Page (BSP). The problem is that the workbook is not opening, but instead a blank Excel page opens. I am using Microsoft Excel 2003 and on BI 7.0 version. Here is the code: Could you please look at the below code and advice me. This does not have any selection screen.  Also, i have another workbook with a selection screen and I want to pass values to these selection variables. Is that possible? In the below code, my suspicion is either with 'application/vnd.ms-excel'  or moving content in to X string. Please give your suggestion. Thanks so much.
    Layout
    <%@extension name="htmlb" prefix="htmlb"%>
    <htmlb:content design="design2002+design2003" >
    <htmlb:page title="Web Workbook LaunchPad" >
    </htmlb:page>
    </htmlb:content>
    In page attributes:
    file_content TYPE STRING
    FILE_XCONTENT TYPE XSTRING
    WA_WBDATA TYPE RSRWBSTORE
    WBDATA TYPE RSR_RPEC_BIN_FILE
    WBID TYPE RSSGUID25
    On Initialization.
    refresh wbdata .
    clear: file_content .
    data: temp_string type string .
    select * from rsrwbstore into table wbdata
    where workbookid = 'VXXGCMF53EVQAS7U8UA80OXN7'.
    if not wbdata[] is initial .
    loop at wbdata into wa_wbdata.
    clear temp_string .
    temp_string = wa_wbdata-clustd .
    concatenate file_content temp_string into file_content .
    endloop.
    clear file_xcontent .
    file_xcontent = file_content .
    response->set_header_field( name = 'content-type'
    value = 'application/vnd.ms-excel' ).
    some Browsers have caching problems when loading Excel format
    response->delete_header_field( name =
    if_http_header_fields=>cache_control ).
    response->delete_header_field( name =
    if_http_header_fields=>expires ).
    response->delete_header_field( name =
    if_http_header_fields=>pragma ).
    *start Excel viewer either in the Browser or as a separate window
    response->set_header_field(
    name = 'content-disposition'
    value = 'attachment;filename=webforms.xls' ).
    response->set_cdata( data = file_content ).
    finally display Excel format in Browser
    data: l_len type i.
    l_len = xstrlen( file_xcontent ).
    response->set_data( data = file_xcontent
    length = l_len ).
    navigation->response_complete( ).
    endif .

    Hi Friend,
    have a loook at the below specified threads.Hope it will help you.
    [link1|download to excel in diffrent window;
    [link2|Re: Exporting data from table to Excel in a particular format using BSP.]
    [link3|download to excel in diffrent window]
    With Regards,
    SHARMILA BRINDHA.M

  • Swing problems...

    Hello all... am having problems while compiling a GUI application.
    The compiler says that the package org.jdesktop.layout does not exist :-/
    i've read that this is happens when you align or move buttons, labels, etc..
    if anyone has a solution pls let me know, and thaks!
    Here is the code:
    * Binomial.java
    * Created on March 21, 2006, 8:38 PM
    package programas;
    * @author  Dionis
    public class Binomial extends javax.swing.JApplet {
        /** Initializes the applet Binomial */
        public void init() {
            try {
                java.awt.EventQueue.invokeAndWait(new Runnable() {
                    public void run() {
                        initComponents();
            } catch (Exception ex) {
                ex.printStackTrace();
        /** This method is called from within the init() method to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            jLabel1 = new javax.swing.JLabel();
            jLabel2 = new javax.swing.JLabel();
            ValorN = new javax.swing.JTextField();
            ValorP = new javax.swing.JTextField();
            jLabel3 = new javax.swing.JLabel();
            JTextField3 = new javax.swing.JTextField();
            jButton1 = new javax.swing.JButton();
            jButton2 = new javax.swing.JButton();
            jLabel1.setText("Digite a N:");
            jLabel2.setText("Digite a P:");
            jLabel3.setText("Coeficiente B:");
            JTextField3.setEditable(false);
            jButton1.setText("Calcular");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            jButton2.setText("Limpiar");
            jButton2.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton2ActionPerformed(evt);
            org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                        .add(jLabel1)
                        .add(jLabel2)
                        .add(jLabel3))
                    .add(24, 24, 24)
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                        .add(layout.createSequentialGroup()
                            .add(JTextField3, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 123, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                            .addContainerGap())
                        .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                            .add(layout.createSequentialGroup()
                                .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                                    .add(ValorP, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 103, Short.MAX_VALUE)
                                    .add(ValorN, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 103, Short.MAX_VALUE))
                                .addContainerGap(113, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
                            .add(layout.createSequentialGroup()
                                .add(jButton1)
                                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                                .add(jButton2)
                                .addContainerGap()))))
            layout.setVerticalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .add(26, 26, 26)
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                        .add(jLabel1)
                        .add(ValorN, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                        .add(jLabel2)
                        .add(ValorP, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
                    .add(22, 22, 22)
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                        .add(jLabel3)
                        .add(JTextField3, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 78, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
                    .add(65, 65, 65)
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                        .add(jButton2)
                        .add(jButton1))
                    .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
        }// </editor-fold>                       
        private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {                                        
                    ValorN.setText("");
                    ValorP.setText("");
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
           int N = Integer.parseInt(ValorN.getText());
           int P = Integer.parseInt(ValorP.getText());
           int DNP = 0;
           long FN = 0;
           long FP = 0;
           long FD = 0;
           long CB =  0;
           String texto = "";
           final int repetidor = 1;
          DNP = (N - P);
            // Calcula Factorial de N
            if (N < 2){
              JTextField3.setText("Menores que 2 no tienen factorial");
            else{
            for (int factorial = 1; factorial <= N; N++){
               FN = FN * factorial;
           //Calcular Factorial de P
          if (P < 2){
           JTextField3.setText("Menores que 2 no tienen factorial");
          else{
              for(int factorial =1; factorial <= P; P++){
                  FP = FP * factorial;
          //Calcular Factorial de  (N-P)
          if (DNP < 2){
              JTextField3.setText("Menores que 2 no tienen factorial");
          else {
              for (int factorial =1; factorial <= DNP; DNP++){
                  FD = FD * factorial;
          //Calculo de Coeficiente Binomial
          CB = N/FP * FD;
           texto = texto+Long.toString(CB);
           JTextField3.setText("texto");
        // Variables declaration - do not modify                    
        private javax.swing.JTextField JTextField3;
        private javax.swing.JTextField ValorN;
        private javax.swing.JTextField ValorP;
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JLabel jLabel3;
        // End of variables declaration                  
    }

    The way for solve this problem is, step by step:
    1. In your preject, over "libraries", right clik and add libraries
    2. Selcet "Swing Layout Extensions" and push "Manage Libraries..."
    3. "Add Jar/Folder..."
    4. Select "c:/Program files/netbeams-5.0/modules/ext/swing-layout-1.0.jar" (in spanish c:/archivos de programa/....)
    5. Build your project (If you have more than 1 project, be careful that you are compiling this project and no other)
    Be happy my friend...

  • Anyone knows what these messages mean ???

    when i do a build-format in DVDSP i get these messages in the log :
    Warning: The file ‘VIDEOGRAPHE_2006.layout’ found in the VIDEO_TS or HVDVD_TS folder will not be included in the final disc.
    Warning: The file ‘VOB_DATA.LAY’ found in the VIDEO_TS or HVDVD_TS folder will not be included in the final disc.
    Any idea what it means and how important they are ??? Thanks

    As above; but it would be more helpful if the message said "FOR INFO: The file..."
    from DVDSP User Manual:
    As part of the build process, DVD Studio Pro creates two additional files in the VIDEO_TS folder. The format process does not include these files in its final output.
    • A .layout file: This file uses the disc name and a “.layout” extension. The file contains project information used by the format process, including the marker information used when creating dual-layer discs.
    • A VOB_DATA.LAY file: This file is used for incremental builds when you choose to reuse files in the VIDEO_TS folder left from a previous build for a new build.
    Note: The .layout filename must match the disc name for an incremental build to work. See “Incremental Builds” on page 563 for more information.
    If you intend to manually copy the VIDEO_TS folder to a disc (bypassing the DVD Studio Pro format process), you should be sure not to copy the above files to the disc. Most DVD players ignore them if they are present in the VIDEO_TS folder on the final disc, but some are unable to play the disc.

  • Libraries and JAR files in netbeans... how to build and deploy a project??

    Hi guys,
    <p>
    I'm having a problem deploying my project. I have created a project structure as so:
    </p>
    <p>
    CLOGE 1.0
    |_Source Packages
    |  |_rdemo
    |    |_ClogeGUI.java [main]
    |    |_ClogeRScript.java
    |_Libraries
       |_Swing Layout Extensions - swing-layout-1.0.jar
       |_C:\CLOGE\JRclient [folder structure of classes]
       |  |_META-INF
       |  |_org.rosuda.JRclient
       |_C:\CLOGE\svgSalamander-tiny [folder structure of classes]
       |  |_META-INF
       |  |_com.kitfox.svg
       |  |_...
       |_JDK 1.6 (Default)
    </p>
    <p>
    Now I can build and run the project in Netbeans (version 5.5) and everything operates as it should. However, if I navigate to the dist folder of the project to the CLOGE_1.0.jar file via the Windows XP Command Prompt and execute "java -jar "CLOGE_1.0.jar", I get this error:
    </p>
    <p>
    Exception in thread "main" java.lang.NoClassDefFoundError: org/rosuda/JRclient/RSrvException<br/>
      at rdemo.ClogeGUI.clogeRScript(ClogeGUI.java:134)<br/>
      at rdemo.ClogeGUI.main(ClogeGUI.java:259)<br/>
    </p>
    <p>
    What do I have to do, so I can simply double-click the CLOGE_1.0.jar file and the project runs?
    </p>
    <p>
    Many thanks,<br/>
    Chris
    </p>
    Edited by: raistrick on Oct 12, 2007 4:49 AM

    Wasn't contracted. Wasn't paid. Wasn't the main focus of the software ;) - I was asked to do it for my technical expertise in statistics and bioinformatics... anyone else here mind giving me some hints other than this unspeakably pathetic excuse for a programmer.
    (by the way "jwenting", if you call yourself a professional and take that attitude to other programmers you won't be in a company very long! Don't jump to assumptions and don't use the internet as some portal to exercise anger that women don't find you attractive and all you have to be cocky about is programming, it's pathetic. Grow up please.
    What I am trying to work out about the answer above, is why. It could mean (1) that you don't know the answer and shunning me so is some poor attempt to save your diminishing ego, which from reading your other posts may be true. It could mean (2) you can't be arsed, which is more likely the case, but then one has to ask why the hell you came on here in the first place. Do you get a kick out of this? Is this your claim to fame - a java forum silver member?? It's not like I wasn't polite or clear in my explanation. Did some unqualified individual steal your job from you once upon a time so all "newbies" thereafter were a target for your pent up aggression? If so, don't worry I am not gunning for your position at all!)
    Many thanks to anyone who can provide a solution. I doubt this is a hard problem to solve and I'd be very grateful if anyone could point me in the direction of an answer. jwentig is quite right, I am not capable of such a task. I'm not a liar, however.
    Edited by: raistrick on Oct 12, 2007 7:25 AM

  • Javax.swing.GroupLayout

    Hi
    I have used Netbeans 7 to design my UI screens which uses jdk1.6, but i need to port it to jdk1.4..
    how can i make these changes?

    user7041221 wrote:
    I have used Netbeans 7 to design my UI screens which uses jdk1.6, but i need to port it to jdk1.4..
    how can i make these changes?Display the form in "Design" mode, right click the "Form" node in the "Inspector" window and set the property "Layout Generation Style" to "Swing Layout Extensions Library". Select the source level and java platform in the project properties window (File | Project Properties).
    Cheers,
    André

  • OracleAS 10.1.2 Patchset List

    Dear all,
    Is there any way I can find a list of all patchsets of Oracle Application Server 10.1.2? I know the newest is 10.1.2.3 but not sure if a newer one has been released.
    In addition, must I apply all the patchsets no matter I use the features or not? And where can I find the features of each patch?
    Thank you.
    Rayyen

    There are only three patch sets released yet for OAS 10g family. The latest one is 10.1.2.3.
    PatchSets do not introduce new features. Newer releases of full version software brings in new features. PatchSets are a cumulative collection of patch fixes to bugs found in a release.
    It is generally advisable to use the latest patch set.
    - One benefit is that you get fixes of most of the bugs.
    - Another advantage comes in upgrades. Generally, most of the testing for upgrade processes and scripts for OAS takes place from the latest patchset level to the newer versions. For instance, to move to FMW11g from OAS 10g, most extensive testing would be done for the upgraded 10.1.2.3 OAS.
    That is why in all new SRs, Oracle Support would strongly suggest you to move to the latest patch set version.
    For latest patches and patch sets for OAS 10g R2, check the following article on MOS/Metalink.
    Oracle Application Server 10g Release 2 (10.1.2) Support Status and Alerts \[ID 329361.1\]
    hope that helps!
    AMN

Maybe you are looking for