A New Forms Look and Feel?

http://groundside.com/blog/GrantRonald?title=new_forms_look_and_feel_interview_with_f&more=1&c=1&tb=1&pb=1
might be of interest.
grant

Hi ,
I 'd like to download the specified (seems wonderful) material from:
http://www.oracle.com/technology/products/forms/pdf/10gR2/community_paper_forms_look_and_feel.pdf OK
http://sheikyerbouti.developpez.com/forms-pjc-bean/LAF/LAF.zip File not found
using DAP....Is something wrong with the last url.....?????????/
Many thanks to alllllllllllllllllll.................
Simon

Similar Messages

  • Forms Look And Feel

    Hi
    Is there any way to get rid of Oracle Logo on Forms Look And Feel?
    Thanks
    Isha

    Here is another way to do this. At least i did this like described below.
    1) Make a copy of ifrun60.exe
    2) Run Borland Resource Workshop
    3) Prepare your own icon and save it to disk
    4) Open ifrun60.exe in Resource Workshop
    5) Substitue the icon to that you saved previously
    6) Save changed ifrun60.exe
    7) Run ifrun60.exe and enjoy your new icon

  • Oracle Forms Look and Feel project for Forms 6i

    Hello everybody,
    Recently I find a web site that introduce Oracle Forms Look and Feel project,
    Oracle Forms Look and Feel project
    http://sheikyerbouti.developpez.com/forms-pjc-bean/LAF/doc/Oracle_Forms_Look_and_Feel_project.htm
    Can I use the PL/SQL library (laf.pll) , Java Beans and PJCs grouped in a jar file (laf.jar) for Oracle Forms 6i?
    thx

    Hi Francois,
    I find one website mention the following,
    "PL/SQL tables reside in the private PL/SQL area of the Oracle Server database instance; they are not available as client-side structures at this time. As a result, you cannot declare and manipulate PL/SQL tables in your Oracle Developer/2000 environment."
    from http://www.unix.org.ua/orelly/oracle/prog2/ch10_01.htm#SQL2-CH-10-SECT-1
    Cheers,
    Gary

  • Implementing Forms look and feel into oracle 10g

    hello, im using oracle 10.1.2.0.2
    i've been trying to implement this look and feel project hours ago here are the steps that i followed:
    # Copy the corresponding JAR file to your /forms/java directory. [copied it to C:\DevSuiteHome_1\forms\java\ and renamed it to laf.jar like mentioned in http://forums.oracle.com/forums/thread.jspa?threadID=693024 but copied also laf_1012.jar  ]
    # Update your /forms/server/formsweb.cfg file.
    As it needs the Sun Java Plug-in instead of the Oracle JInitiator, you have to create a special section that uses the Sun Plug-in.
    You also need to add the corresponding JAR file to the archive tag (not the archive_jini). [modified it to archive=frmall.jar,laf.jar, laf_1012.jar, i didnt know what to do with the Sun Java Plug-in but when i debug and run the oracle there is an icon that shows the java icon launched]
    # Copy the forms.css file somewhere on your disk (by default, it is searched in the C:/ root directory). [done and i've put it in c:\]
    # Compile the laf.pll PL/SQL library, then copy the pll.plx to one of the directories pointed by the FORMS_PATH variable.
    *i've put the laf.pll in my C:\DevSuiteHome_1\forms as shown in the FORMS_PATH of the default.env
    *tried to open the laf.pll from the oracle froms and reports, choosed Program -> Compile PL/SQL -> All, but errors like PKG_DB_LAF_LOV.PREPARE must be declared ...
    *tried to compile it using f60gen module=laf.pll userid=Administrator/pass module_type=LIBRARY output_file=laf.plx batch=yes compile_all=SPECIAL but the f60gen is no where to be found
    *i tried to replace f60gen by envshell.cmd from the $APPL_TOP but i cant find any environment variable called $APPL_TOP, i even searched the whole hard disk for envshell.cmd and couldnt find anything
    Please help as this is the final step of implementation, waiting any response asap!

    Hello,
    Please, don't ask question about the LAF on this forum. Ask them on the dedicated mail address : [email protected]
    Thanks,
    Francois

  • Where to find laf.jar (Forms look and feel project)

    Hello Francois,
    I´ve just downloaded the latest .zip-file (1343) but it seems to be corrupt. So I downloaded LAF_1342.zip which works fine. But where is the so often mentioned laf.jar ? The zip file contains laf_902.jar, laf_1012.jar and laf_10123.jar. Is there some renaming needed ? Let´s say renaming laf_1012.jar to laf.jar ?
    When I run css_updater.fmb it fails with POST-QUERY-TRIGGER error ORA-6508.
    It looks like I' m not allowed to use the PKG_LOOK_AND_FEEL even though laf.pll is attached and the program units are within the form, too.
    Could you please give a hint ?
    Regards Frank

    Frank,
    The zip file contains laf_902.jar, laf_1012.jar and laf_10123.jar. The number corresponds to the version of Forms Builder. So if you are working with Forms Builder 10.1.2 rename laf_1012.jar to laf.jar.
    Is the laf.pll available in your forms path (default.env). Default the laf.pll is in another folder when you unzip the laf_1342.zip.
    Did you include the laf.jar in the archive of the config file (formsweb.cfg).
    Regards,
    Mark

  • Java form look and feel changed

    Whenever I load a java form application now, it seems to have reverted back to some non-native form components e.g.
    http://www.codeproject.com/KB/java/theme/theme.gif
    I would prefer this to return to what it was originally and take on the appearance of a windows application. It may be something I have done in the code at one stage or another, but as it now affects all java applications it must be a global setting which has changed somewhere. Does anyone know where I can find this and change it back?
    Thanks

    Hi Gunja,
    Thanks for your reply but it does not help. My problem is some of the YUI functionalities missing or not working properly after the Portal Component deployed to Portal.
    For example, the YUI Overlay dialog box appears at the bottom right of screen but it is suppose to appear in the middle of screen. It work prefectly outside the Portal as a simple HTML page.
    Any idea from any body?
    Please advice.
    Thanks,
    HauChee

  • Switching Look and Feel

    menu = new JMenu ( "Look and Feel" );
    menu.setMnemonic ( KeyEvent.VK_L );
    menuBar.add ( menu );
    JMenuItem lookAndFeel[];
    final UIManager.LookAndFeelInfo laf[] = UIManager.getInstalledLookAndFeels();
    lookAndFeel = new JMenuItem[laf.length];
    for ( int i = 0; i < laf.length; i++ )
    lookAndFeel[i] = new JMenuItem ( laf.getName() );
                   lookAndFeel[i].addActionListener (
                        new ActionListener() {
                             public void actionPerformed ( ActionEvent e )
                                  UIManager.setLookAndFeel ( laf[i].getClassName() );
                                  SwingUtilities.updateComponentTreeUI ();
                   menu.add ( lookAndFeel[i] );

    i get these errors, can someone give me a hand at the solution?
    C:\app\Applicatie.java:198: local variable i is accessed from within inner class; needs to be declared final
                                  UIManager.setLookAndFeel ( laf.getClassName() );
    ^
    C:\app\Applicatie.java:199: updateComponentTreeUI(java.awt.Component) in javax.swing.SwingUtilities cannot be applied to ()
                                  SwingUtilities.updateComponentTreeUI ();
    Many thanks

  • Problems installing the new 'Look And Feel' done by Francios Degrelle

    I have download the new verison of the new 'Look And Feel' from
    http://sheikyerbouti.developpez.com/forms-pjc-bean/LAF/sources/v133/LAF_133.zip
    1- I defined a new section in formsweb.cfg named summit in the middle tier (AS 10g Rel2):
    [Summit]
    baseHTML=base.htm
    baseHTMLjinitiator=basejpi.htm
    baseHTMLjpi=basejpi.htm
    baseHTMLie=baseie.htm
    HTMLdelimiter=%
    workingDirectory=e:\app\summit
    envFile=default.env
    IE=JInitiator
    escapeparams=true
    form=customers_laf
    debug=no
    otherparams=buffer_records=%buffer% debug_messages=%debug_messages% array=%array% obr=%obr% query_only=%query_only% quiet=%quiet% render=%render% record=%record% tracegroup=%tracegroup% log=%log% term=%term% useSDI=yes
    buffer=no
    debug_messages=no
    array=no
    obr=no
    query_only=no
    quiet=yes
    render=no
    pageTitle=Summit
    serverURL=/forms/lservlet
    codebase=/forms/java
    imageBase=DocumentBase
    width=100%
    height=100%
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    logo=no
    restrictedURLparams=HTMLbodyAttrs,HTMLbeforeForm,pageTitle,HTMLafterForm,log,allow_debug,allowNewConnections
    serverApp=default
    archive_jini=frmall_jinit.jar
    archive=frmall.jar,laf.jar
    WebUtilArchive=
    jpi_download_page=http://java.sun.com/products/archive/j2se/1.4.2_09/index.html
    jpi_classid=clsid:8AD9C840-044E-11D1-B3E9-00805F499D93
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-1_4-windows-i586.cab#Version=1,4,0,0
    2- then I put a copy of the file 'forms.css' in the middle tier in the folder :
    apache\apache\htdocs
    so as to be on the path and then modified PM$CSS_FILENAME in all forms to be 'forms.css' instead of 'c:\forms.css' and recompiled.
    3-I put a copy of the file 'laf.jar' in the folder : 'd\Ora_AS\forms\java' in the middle tier and added this path to the classpath environment variable.
    4- I restarted the middle tier and wrote this URL:
    http://test/forms/frmservlet/config=summit
    the customers form opened but with no background images,I added the following to the URL '&form=test_laf_color_scheme.fmx',the form opened with the default color scheme to 'purple',I changed it from a drop down list to orange and all buttons background color degraded to orange.
    My questions:
    1-where are the background images ?
    2- I cannot compile the 'laf.pll' file to 'laf.plx',when I compile I get this error:
    FRm-91507 -internal error
    P.S. I read this thread :
    FRM-91507 when compiling a library with Forms 6i
    and I didn't understand it,where do I change the Forms_Path? in the forms Home release 1 or Forms home release 2?!!!
    3-Is the 'forms.css' file properly located? if not? where do I put it?
    Sorry for the long scenario but I'm really confused?
    Thanks
    Mohammad

    Hello,
    I'm curently out of everything so I cannot answer this one. All I can tell is that images are read from the client machine or jar file. If you want read images from the application server, you need the http:// syntax.
    Francois

  • Creating an messagebox in forms with look and feel of Windows

    I wanted to create an message box in my form with look and feel of windows.For this i used the package ORA.FFI...but i am getting an error....and i am not bale to clear it...the code is as follows
    Package Specification: -
    PACKAGE messagebox IS
    /*Function message_box calls windows MessageBox function. */
    FUNCTION message_box(plptext IN VARCHAR2,plpcaption IN VARCHAR2)
    RETURN PLS_INTEGER;
    END;
    Package body : -
    PACKAGE BODY messagebox IS
    lh_window ORA_FFI.LIBHANDLETYPE;
    fh_mb ORA_FFI.FUNCHANDLETYPE;
    lh_forms ora_ffi.libHandleType;
    /* Function i_mbx acts as the interface to the Messagebox
    function in windows
    FUNCTION i_mbx(funchandle IN ORA_FFI.FUNCHANDLETYPE,
    plptext IN OUT VARCHAR2,
    plpcaption IN OUT VARCHAR2)
    RETURN PLS_INTEGER;
    PRAGMA interface(C,i_mbx,11265);
    FUNCTION message_box(plptext IN VARCHAR2,
    plpcaption IN VARCHAR2)
    RETURN PLS_INTEGER IS
    ltext VARCHAR2(500) := plptext;
    lcaption VARCHAR2(500) := plpcaption;
    BEGIN
    RETURN(i_mbx(fh_mb,ltext,lcaption));
    END;
    BEGIN
    lh_window := ORA_FFI.LOAD_LIBRARY('d:\','DclMsgBox.dll');
    fh_mb := ORA_FFI.REGISTER_FUNCTION(lh_window,'DclMsgBox',ORA_FFI.C_STD);
    ORA_FFI.REGISTER_RETURN(fh_mb,ORA_FFI.C_CHAR_PTR);
    ORA_FFI.REGISTER_RETURN(fh_mb,ORA_FFI.C_CHAR_PTR);
    --ORA_FFI.REGISTER_RETURN(fh_mb,ORA_FFI.C_INT);
    END;
    Now when i call this function in When-New-Form-Instance as
    declare
    p number;
    begin
    p:=messagebox.message_box('hello','test');
    end;
    I had created an dll for message box and placed the .dll and .lib files in the d:\ of my system.
    I get an error message when i run the app. The error is:
    The instruction at "0x005a3b24" referenced memory at "0x00000006".The memory could not be "read".
    Can anybody please tell me where have i gone wrong....

    Colin Martin wrote:
    I agree the leather look is horrible. It's just not a reflection of the cutting edge modern design we have all got to love over the years. If it has to be there at least give us a choice of looks.
    There is a word for this (not that one) - skeuomorph. Wikipedia defines this as 'a derivative object that retains ornamental design cues to a structure that was necessary in the original. Skeuomorphs may be deliberately employed to make the new look comfortably old and familiar'.
    Common examples are found in audio software with pictures of actual knobs that you turn, as here; and the leather-bound tear-off look of calendar and contacts on the iPad is the same principle: the intention is to make it familiar and friendly to people who might otherwise be frightened off by a modern look because they are not used to modern technology. The whole concept and look of the iOS operating system is being brought into use on Macs for the same reason, to encourage non-tech-savvy people not to be frightened of them.
    This is all very well in its way, but in these two particular cases the result is unfortunate, particularly for experienced users, and it really ought to be possible to choose between the looks (as you can with the Mail layouts), even if the skeuomorph is the default.

  • Migrating sapgui look and feel settings of sapgui to new notebook.

    Hi,
    We are migrating from XP to Vista and SAPGui 640 to 710. (new notebooks are assigned to the users)
    I copied saplogon.ini to the new notebook to preserve the links to the servers.
    Some users have customized the look and feel of their SAPGui.  How can I copy the settings of their SAPGui to the new notebook (like the visual design, color settings and font size that the user have set in their sapgui.)
    thanks,
    Roel

    Hello Roel,
    The windows vista version itself gives a new dimension to the look and feel. So I guess nothing must have been editted on SAPGUI screen.
    And more of SAP GUI 640 to 700 look and features are also different.
    Kindly request you to check with the user who has changed and got the looks as you found on his screen.
    If you are looking for the changed screen after SAP gui login, where the main screen appears.
    Then I would suggest, you go through thsi link below -
    Change SAPGUI initial login screen
    http://www.sap-img.com/basis/changing-the-sapgui-logo-on-the-right-hand-side.htm
    Do let me know if this resolved your issue.
    Thank you.
    Regards,
    Manomeet Mohapatra
    Award points if helpful **

  • Look and Feel Forms

    please help me out...
    i am working on oracle 6i forms ...so how can i change the look of forms like java or .net applications..
    is there any tool or file so please share !!!!!
    back end version -10g

    Hi,
    you can change the look and feel of the form using visual attributes,Or else just check the property palette of the canvas or window.Best thing is to check with F1, Form help. There you get lot of information.
    Thanks & Regards
    Srikkanth.M

  • Error While running Oracle Look and feel Template Form -  (LAF_TEMPLATE)

    Forms Version 10.1.2.3
    JRE version 1.6.0_30
    Operating System Windows XP
    I am trying to setup oracle look and feel project on my local machine.
    For that i upgraded forms to 10.1.2.3 then i also applied path no *9593176* (But not yet performed steps related to jacob and webutil).
    Problem : When i run Oracle look and feel template form it comes up with following error.*
    Forms Applet version is : 10.1.2.3
    Exception in thread "thread applet-oracle.forms.engine.Main-1" java.lang.NoSuchMethodError: oracle.forms.handler.IHandler.getApplet()Ljava/applet/Applet;
         at oracle.forms.fd.DrawLAF.init(DrawLAF.java:285)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    Hello,
    I have spent a lot of time to indicate wherever I could that you don't have to ask questions about the LAF on this forum. You have two other different locations, a dedicated email and a dedicated forum.
    At the first sight, it seems that you have not used the laf_10123.jar in your archive tag.
    Thank you,
    Francois

  • I sure hope that the new imessenger doesn't look like the text messaging app, that would be a huge flop for apple. It has to look and feel like bbm or it will just suck.

    I sure hope that the new imessenger doesn't look like the current text messaging app, that would be a huge flop. I think I should look and feel like the bbm to make any kind of significant impact. Am I wrong?

    "iMessage in iOS 5 brings the functionality of iPhone messaging to all of your iOS devices―iPhone, iPad and iPod touch. Built right into the Messages app, iMessage allows you to easily send text messages, photos, videos or contact information to a person or a group on other iOS 5 devices over Wi-Fi or 3G. iMessages are automatically pushed to all your iOS 5 devices, making it easy to maintain one conversation across your iPhone, iPad and iPod touch. iMessage also features delivery and read receipts, typing indication and secure end-to-end encryption."
    That is from the Apple site. If all your friends have an iPhone, iPod Touch, or iPad you cang share with your friends, with is exactly like BlackBerry Messenger (BBM only works on BBs).
    And it does look just like the current message format. You can also find that at www.Apple.com

  • Can combine two look and feel into new one?

    Hi,
    I want to change the JProgressBarUI of NimbusLAF on other LAF. I means how to put two different components each with different look and feel in single JFrame.Any way to get this. Help. Thankz.
    Edited by: user13383557 on Nov 22, 2010 12:07 AM

    How about reading the api doc and then message the appropriate method on the diverging component instance?
    It's not recommended, though, and wont survive dynamic LAF changes.
    CU
    Jeanette

  • Attn : Geoflee A Genreral Comment About the New Look and Feel

    Hi,
    I feel that the discussion forums look and feel has improved and it allows us to chosse only theForums that we need to see and thus eliminates unneccasr sctrolling.
    It would be better if OTN Reverts back to the old look and feel as regards showing the Questions and replies posted on that thread.
    That way would be easier to see all the details in one strech instead of clicking on the replies...
    I hope this would be considered.
    Fellow Forum readers pls air u'r comments on this....
    Regards,
    Ganesh R

    UIManager.put("ToolTip.background", Color.YELLOW);You can use these other properties for the tool tips:
    ToolTip.backgroundInactive     
    ToolTip.border     
    ToolTip.borderInactive     
    ToolTip.font     
    ToolTip.foreground     
    ToolTip.foregroundInactive     
    Regards.

Maybe you are looking for

  • Page Titles in Web Apps for SEO not possible?

    I was surprised to find that you cannot control the page title of a web app item. For example: http://tinyurl.com/7qc76gg The page title is just "Brazil" and there's no way to control it? Ideally we'd want something like this for SEO reason. Business

  • Many Trash problems with leopard and no fix

    Hi I posted that my trash is not emptying under any circumstances no one seemed to know how to solve this. i noticed that there are several people with trash issues (some not emptying until restart, others cant see the trash) i just hope that apple f

  • Navigation Attributes & Planning Characteristics

    Hi, We plan to maintain some of the characteristics as Navigation Attributes. We understand that there are performance issues if we use navigation attributes in planning area. I have a query: If we do not navigate data based on navigation attribute i

  • How to publish my photos on Facebook?

    How to post my photos on Facebook? Please.

  • Open new tab

    Hello, I created some document libraries, I added the "link to a document" content type which allows me to enter external URLs which point to a website page or document. I've been doing a lot of reading on how to have these external documents or web