How to display icons in dev10g during execution

Hello world

I built a form and tried to use icons for buttons, but when I run the form through the cover no icons will appear

what I did is as follows

1. I made a .jar file contains some. Use it to buttons, gif images

2 - I copied this jar file in the java folder in the dev10g directory

3 - Add the name of the .jar files in the formsweb.cfg

as follows

Archive = frmall.jar, ,jicons.jar

archive_jini = frmall_jinit.jar,jicons.jar

4 - in the registry.dat file

default.icons.iconextension = gif

is there anything missing?

Help, please

Kind regards

Thanks Bella,

I found what was the error

the value of the parameter Imagebase was Documentbase, so I changed it to

ImageBase CodeBase =

and it works

Thank you very much

Tags: Oracle Development

Similar Questions

  • How to display icons in FORM 11 g

    Hi all

    I use forms oracle 11g 64 bit on windows server 2008 64 bit (fusion middleware) and oracle database 11g 64 bit.

    My question is that how can apply icons in forms 11 g?

    before this, I create a form with developer 10g with icons on the buttons,.
    now when I compile these forms in forms11g, the icons will now appear.

    How to get around?

    Kind regards.

    Hello

    Just do the following:

    1. place the images in a folder of your choice. Theoretically, we will assume that they are found in-> d:\images

    2 configure your environment so that ORACLE_HOME\jdk\bin is in your path in order to run the jar utility.

    3. create a jar file using the images in the folder d:\images as follows:

    a. cd d:\images

    b. jar - cvf icons.jar *.gif

    3. copy the file icons.jar in the ORACLE_HOME/forms/java folder

    4. with the help of Oracle Enterprise Manager 11 g Fusion Middleware control make the following changes to the formsweb.cfg:

    Archive = frmall.jar, icons.jar.

    b. = codebase imageBase - this is necessary if you use images from jar files.

    6. make sure that the appropriate entries are defined in the Registry.dat indicating the type of image file used for the icons. In addition, the example used here requires that the value of default.icons.iconpath be blank because the images in the jar file is not in a directory structure.

    default.icons.iconextension = gif
    default.icons.IconPath =

    NOTE: You may need to clear the cache of client jar files if you have made changes to the Registry.dat so a new copy will be downloaded.

    Reference Note: how to display iconic Images forms 11 g [960103.1 ID]

    Hope this helps you :)

    Concerning
    Carlos

  • How to disable the close button during execution

    Hello world.

    Please help me how to disable the close button at the top of the window during execution. I don't want the user to use this button to close. I used the button called out in this form but sometimes users of closing by clicking this button.

    I use the formula of Oracle 10 g R1.

    Thanks in advance,

    Or if you want to stop the closing by button close the main WINDOW. Then create a trigger on called KEY-OUTPUT at the FORM LEVEL and just write the value NULL ex.

    Trigger = KEY-EXIT (FORM-LEVEL)
    NULL;
    

    -Clément

  • How to hide the ADF table during execution

    Hi all

    I use Jdeveloper - 11.1.2.4.39.64.36.1 version

    Is it possible to show only the tables with associated in the same lines and hide tables with no record.

    For ex: Let's say that at the time of the design, there are three related data tables with the diagram below.

    Table 1
    Table 2
    Table 3

    However, during execution, there is no record for 'Table 2', but the table 1 and table 3 have records associated with them.

    Is it possible to hide the table 2 and get the following provision -

    Table 1
    Table 3

    According to the schema, table 2 should hide, and table 3 should get reordered under table 1 directly.

    Best regards

    Ankit Gupta

    Hello

    You can set the property visible from the table to something like #{bindings.. estimatedRowCount gt 0}

    Arun-

  • Flashing of the icons/texts/windows during execution AE4

    Hi all.
    I have a weird problem. When I open After Effects CS4, icons, other programs and After Effects of course starts to blink, lag and so so. When After Effects is not running, everything works fine. At first, I thought that it is an OS problem, so after about 2 months I bought new HARD drive and formatted, installed Windows XP SP3, installed After Effects CS4, but problem has not disappeared.

    Video: http://www.youtube.com/watch?v=mS6749ID0Zc

    * These warnings are wrong installed cycore HD.

    I asked on the forums hardware in my country, they said that it is a GPU problem and my video card is going to die in a month, but I'm still living with this problem for three months. However, I think that it is not GPU problem, because this problem seems to be that in After Effects. And if it's GPU problem, is it possible to fix it? I also tried to install the evaluation version.

    * Sorry for my bad English.

    Then maybe he uses a path or command set when running AE he uses not otherwise... Impossible to say. There is certainly a problem somewhere and that you run on an operating system inherited as WinXP certainly adds an extra level of complication regarding how the driver behaves... Sorry I can't be more helpful, but it's really something where you would have to open the computer and watch things whiel running AE plus of course prior check of cables and al lthat and check the driver. I suggest you a grab your next computer geek best (at school?) and did a quick glance.

    Mylenium

  • DON'T KNOW: How to resize a clip created during execution

    I don't know how to resize a clip created when running...



    Thank you. This works. I used _xscale and _yscale.

    var listener: Object = new Object();
    my_mcl. AddListener (Listener);
    listener.onLoadComplete = function() {}
    my_mc._xscale = 25;
    my_mc._yscale = 25;

    };

  • How to display the result sqlplus in java?

    I want to call sqlplus to run some commands sql in java, but how can I print the result of sqlplus?

    In java code, I call sqlplus as:

    Process of p;
    Run the command
    p = Runtime.getRuntime () .exec (commandString);
    print the result of the command
    InputStream inputStream = p.getInputStream ();

    How to display the result of the execution?

    Published by: Yi on February 26, 2012 23:41

    You can use ProcessBuilder. Copy the following code starts sql * more and runs the script in the variable "filename". It displays the results in the console of NetBeans.

    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.File;
    import java.util.Map;
    
    public class test1 {
    
        public static void main (String args []) {
    
            test_script();
        }
    
        public static void test_script () {
    
            String fileName = "@test_table.sql";
            String sqlPath = "E:\\";
    
            String sqlCmd = "sqlplus";
    
            String arg1   = "user/password@sid"; -- plug in your user, password and db name
            String arg2   = fileName;
            try {
                String line;
                ProcessBuilder pb = new ProcessBuilder(sqlCmd, arg1, arg2);
                Map env = pb.environment();
                env.put("VAR1", arg1);
                env.put("VAR2", arg2);
                pb.directory(new File(sqlPath));
                pb.redirectErrorStream(true);
                Process p = pb.start();
              BufferedReader bri = new BufferedReader
                (new InputStreamReader(p.getInputStream()));
              BufferedReader bre = new BufferedReader
                (new InputStreamReader(p.getErrorStream()));
              while ((line = bri.readLine()) != null) {
                System.out.println(line);
              }
              bri.close();
              while ((line = bre.readLine()) != null) {
                System.out.println(line);
              }
              bre.close();
              System.out.println("Done.");
            }
            catch (Exception err) {
              err.printStackTrace();
            }
    
        }
    
    }
    

    Here is the content of the script at E:\\test_table.sql

    Prompt drop TABLE ANOTHER_TEST;
    DROP TABLE ANOTHER_TEST CASCADE CONSTRAINTS
    /
    
    Prompt Table ANOTHER_TEST;
    CREATE TABLE ANOTHER_TEST
    (
      BATCH_SEQ             NUMBER,
      BATCH_GROUP_ID        NUMBER,
      STATUS_FLAG           VARCHAR2(30 BYTE),
      OBJ_BEING_PROCESSED   VARCHAR2(80 BYTE),
      BATCH_RUN_START_DTTM  DATE,
      BATCH_RUN_END_DTTM    DATE,
      CREATE_DTTM           DATE,
      CREATE_USER           VARCHAR2(30 BYTE),
      UPDATE_DTTM           DATE,
      UPDATE_USER           VARCHAR2(30 BYTE)
    )
    LOGGING
    NOCOMPRESS
    NOCACHE
    PARALLEL ( DEGREE DEFAULT INSTANCES DEFAULT )
    MONITORING
    /
    
    COMMENT ON TABLE ANOTHER_TEST IS 'This is a test table.'
    /
    
    EXIT
    /
    
  • Can I change dynamically during execution Data Source?

    I need run the same reports on test environment and the production environment. How could I change source data during execution, according to the users want to run reports by querying the database test or production without amendment report definition?

    Hello

    what I would recommend in your case: set up your development/test systems as separate systems parallel to your production system. Clone your production environment for these development systems. Then a developer can login to the development system and run the reports (and modify it without touching the actual production system) and normal users work on the production system and only for validating them new developments, that they connect to the test system.

    It's a standard approach in software development and COMPUTER systems operations.

    How to watch your infrastructure, I have the impression that you have two databases and Server BI (prod and test)? Why not set up a test environment for the BI server, too?

    Best regards
    David.

  • IMAQ, zoom to fit display control disappeared during execution.

    As in the title. The menu is impossible to call during execution of the control display Imaq. This has happened after the compilation of the code.

    Any idea why this happened?

    Francesco.

    I had this problem before.

    The solution is not very pretty, but it can be found here: http://forums.ni.com/t5/LabVIEW/Missing-quot-Zoom-to-fit-quot-in-application-EXE-build/td-p/905681

    Birgit

  • How can I draw several plots by using the XY graph during execution?

    Hello

    I want to draw several plots in the graph XY to the means of execution user will select the number of plots that he wants to draw, depending on this value, I have to get these values and use table generation and then I give to graph XY.

    During execution, but how to do this?

    Please help me in this regard.

    Kind regards

    Herald

    Why start a new thread?

  • How to display the speaker icon in the taskbar in windows 7?

    How to display the "speaker" of the taskbar icon in windows 7?

    Thank you

    concerning

    Jamal

    Hi Jamal

    1. right click on the taskbar, and then select Properties.

    In the Notification area section, click the Customize button.

    2. in the Configuration window, find the Volume icon.

    The Drop Down Menu to select the icon lounge and Notifications.

    3. If you don't see the Volume icon, click system icons activate or deactivate the link at the bottom of the window.

    Find the Volume icon and select enabled in the menu dropdown.

    Repeat step 2.

    Let us know the results.

    Concerning

  • How to display the notification icon in v4.2 to v4.5 versions

    Hi all

    1. work on BB v4.2 (8100 Simulator)

    2 opportunity BB JDE 4.2

    3. the request is:

    I would like to show a notification icon at the top of the BB device with my request.

    found in version 4.7 and v4.6, I used of the API of the suite

    Import net.rim.blackberry.api.messagelist.ApplicationIcon;
    Import net.rim.blackberry.api.messagelist.ApplicationIndicator;
    Import net.rim.blackberry.api.messagelist.ApplicationIndicatorRegistry;

    How can in the same way, I display Icon in v4.2 to plough v4.5 versions?

    is that it takes in charge in versions below or any other API.

    Please help me on this, must take the decission on this feature.

    Thanks in advance

    Ratna

    This is not supported in older versions.

  • I don't see the icon of face detection... How to display this toolbar?

    I do not see the icon bar that shows icon of face detection... How to display this toolbar?

    Press 't' button to toggle the toolbar or simply "o ' button to access the view of people."

  • How to change the frequency of sampling DAQmx during execution?

    Hello guys. I'm using LabVIEW in the measures of the frequency response function. My application requires the sampling rate to change according to the frequency of the signal during execution.

    I tried to do it with a "structure of the event" and it works well when I change the rate manually via the front control but it backs do not work when I set up the sampling frequency to vary automatically (just a frequency sweep). Photos below:

    Why not the structure of the event feels the change in the value of "rate"?

    Thanks in advance for your help.

    Lucas

    Hello

    In "automatic mode" to change the sampling rate, the calculated rate is written in the local variable (as illustrated in the code).  Structure of the event does not change value in the local variable as an event.

    In order to make the structure of the event to recognize the change in value of an indicator such as event: write the new value to the property "Value (Sgnl)" corrosponding node to rate indicator (see figure below).  This will make the structure of the event accept the value change in the indicator as event.

    Note: Use architectures such as producers and consumers for such applications, which makes the application readable and expandable.

    See rear queries if any.

  • HOW TO IDENTIFY THE TYPE OF ACTIONSCRIPT CODE DURING EXECUTION

    Is it possible to get the version of actionscript in flash movie that is to say, if AS1.0 or AS2O or AS30 during execution?

    It is possible to detect the execution if a movie is of the type AVM1 and AVM2.

    AVM1 means all the movie clips targeted before the Flash Player 9. [AS1 or AS2]

    AVM2 means video clips focused on Flash player 9 or higher. [AS3]

    The following code detects the version of the clip.

    var img = _loader.getChildAt (0); _loader is a loader loading an external swf file object.

    If (img is AVM1Movie)

    {

    Alert ("avm1 movie...");

    }

    on the other

    {

    Alert ("avm2 movie...");

    }

    I don't think you can distinguish if the movieclip is AS1.0 or AS2.0. because, at compile time, the AS2.0 code gets converted to AS1.0 code.

Maybe you are looking for