need help with loading the icon

can I get help about icon loading in oracle forms?

OK make a folder name it icons and copy all you are gif icons and paste into the same folder (icons), and then copy the icons folder and paste in
D:\DevSuiteHome_1\forms\java\oracle\forms

When you want to display the icon, then do not use .gif (Note: sometimes also works with .gif) and something more Stéphane on capital letter of gif - icons.it should be in letter.i hope that you understand.

Sarah

Tags: Oracle Development

Similar Questions

  • Need help with loading the XML file

    Hello

    I spent reviewing the web/forums for an example on how to do this for a few days now.  I managed to get this working in Flash Pro easily enough, but I think I'm missing something when I want to do the same thing in Flex.

    Basically, I want to load an XML file and then set the values of the text of labels 5, equal to the data in the XML file.

    So I have a button created in MXML and have put the following click event:

    Click = "dsSetup (Event)" "

    I also stated the following:

    public var myRequest:URLRequest = new URLRequest ("assets/myFile.xml");   folder located under the CBC in project

    public var myLoader:URLLoader = new URLLoader();

    public var myXML:XML;

    My function that loads is as follows:

    public function dsSetup(event:MouseEvent):void

    {

         trace ("dsSetup");

    myXML = new XML (myLoader.data);

    H3. Text = myXML.source.itemA;

    H4.text = myXML.source.itemB;

    H5.text = myXML.source.itemC;

    H7.text = myXML.source.itemD;

    H8.text = myXML.source.itemE;

    currentState = "MainMenu";

    }

    myLoader.addEventListener (Event.COMPLETE, dsSetup);   I think that this line is no longer as I put it in the MXML

    myLoader.load (myRequest);

    It's the way I did in Flash and it worked fine, but I must be missing something when it comes to Flex.

    Can you explain or point me to a good tutorial that shows how to load XML in Flex code?

    Those I've found seems to have about 50 lines of code just to load a file and add through a complex for a beginner.

    Thank you very much

    I suggest you save the data loaded in a variable that can be linked, then bind the properties of the text - who:

    [Bindable]

    var myXML:XML;

    public void dsSetup(event:MouseEvent):void

    {

    myXML = new XML (myLoader.data);

    currentState = "MainMenu";

    }

    ...

  • Need help with loading in a different place every time the page reloaded the film.

    Hello

    I have a Flash movie that I need to go to one of the 6 chosen images when say a user presses the button back or home page of the site. I don't want just the same user, see the flash movie to play again in the same place each time that they return home.

    Help with this is appreciated.

    Thanks advance.

    -Ann

    Here's what I wrote:

    var numbers: Array = [2,114,415,687,960,1195,1485];

    _root.firstTime = true;

    {if (Firsttime)}

    firstTime = false;

    The frame number: var = Math.floor (Math.random () * numbers.) (Length);

    gotoAndPlay ([frame] numbers);

    }

    I also tried this:

    Array.prototype.shuffle = function() {}
    for (var = this.length - 1; ivar ivar > = 0; ivar-) {}
    var p = random (ivar + 1);
    var t = this [ivar];
    This [ivar] = this [p];
    This [p] = t;
    }
    };
    ASSetPropFlags (Array.prototype, ["shuffle"], 1, 1);
    var Array_ar:Array = new Array (2,114,415,687,960,1195,1485);
    Array_ar.shuffle ();
    index = 0;
    function load_random() {}
    gotoAndPlay(Array_ar[index++]);
    If (index == Array_ar.length) {}
    (index = 0);
    }
    }
    load_random();

    But this Dungeon jumping whenever I hit the back of the frame 1 or refresh.

    Thanks again.

    use:

    var numbers: Array = [2,114,415,687,960,1195,1485];

    The frame number: var = Math.floor (Math.random () * numbers.length);

    gotoAndPlay ([frame] numbers);

  • Need help with loading BSO cube with several data export files using the Regional service

    Hello

    We have BSO cubes that are huge and when I expoted data in files, it generated ABC.txt, ABC_1.txt, ABC_2.txt, like this.

    How to load this data in the Cube that sits on the other environments? We use Essbase 9.3.1.

    I can load the individual files using EAS data loading? If so, ABC_2.txt then ABC_1.txt and finally an ABC.txt would be the loading sequence back?

    Please suggest.

    As Essbase is written this block by block, each block will have its complete info if it is done as a single export or parallel export. You can easily prove this (and I have) If you export a database and load only files 2 or 3, it loads without error. don't forget that you load a file rules, the load fails when the first error. There is no error found, so a value of a complete block of information must be present. Also open export (large files can be opened with wordpad) and you will see a complete info for block exery

  • Need help to load the UI components dynamically on JSPX

    Hi all

    I have a requirment/usecase mentioned as below

    (1) we have 10 different set of applications that have their own elements to the screen.

    (2) applications that need to be done one JSPX page.

    (3) we have the data contained in the comics with app_id for each application, screen_elements, screen_type.

    (3) load so now, function app_id (application id), while it is to load the application name and other details of this particular application at run time.

    (4) the elements of the screen, to dynamically load the items on the screen and screen_type, instead of hard coding all the values in the page, and instead of setting them conditional based on the name of the application.

    Can you please help me how can I achieve this usecase

    Please let me know if you need additional information. It will be very useful tome you can suggest alternatives more about it.



    Kind regards
    Ashok E

    Some examples of code that will create a box object text dynamically on the command button click, I think that this will help you go further.

    DynamicPage.jspx*



    xmlns:f = "http://java.sun.com/jsf/core".
    xmlns:h = "http://java.sun.com/jsf/html".
    xmlns:af = "http://xmlns.oracle.com/adf/faces/rich" >






    Binding = "#{DynaPageBean.panelFormLayout1}" > "






    DynaPageBean.java_
    test of the package;
    Import oracle.adf.view.rich.component.rich.input.RichInputText;
    Import oracle.adf.view.rich.component.rich.layout.RichPanelFormLayout;
    public class DynaPageBean {}
    Private RichPanelFormLayout panelFormLayout1;
    public DynaPageBean() {}
    }
    public String newForm() {}
    for (int i = 0; i)<10 ;i++)="">
    Txt RichInputText = new RichInputText();
    txt.setLabel ("Input Text" + (i + 1));
    txt.setColumns (40);
    txt.setRequired (true);
    panelFormLayout1.getChildren () .add (txt);
    }
    Returns a null value.
    }
    public void setPanelFormLayout1 (RichPanelFormLayout panelFormLayout1) {}
    this.panelFormLayout1 = panelFormLayout1;
    }
    public RichPanelFormLayout getPanelFormLayout1() {}
    Return panelFormLayout1;
    }
    }

  • need help with loading paper inkjet 4635

    I just bought a HP Office Jet 46635 and I can understand how to load the paper.   Can anyone help?

    Here's the Manual.  PG 24 illustrates how to load the paper. Happy new year!!

  • need help with loading Flash on Apple Mac Mini

    Lost my username, password & I am unable to load flash version 8 or better, totally computer illiterate & need HELP!

    Hi Michael,

    Please see what userid & password I need to install Flash Player?.

    --

    Maria

  • Need help to remove the icon

    HI, I'm new to the MacBook Air, recently I download a game on Steam, after I deleted the game but the icon remains in the launch area, I tried dragged to the trash, but it won't work, the heads upward?

    1. Enter the Launchpad.
    2. Click and hold on an icon until you see all the icons wiggle.
    3. Click on the button "x" in the upper left of the icon of the Mac App Store application to remove.
  • Need help with installing the drivers for Satellite

    Help, please! One day, I restarted my pc I would normally, and it came with a code error on something in the sense of "we need to reboot your pc" so after days that I did get it back and actually log on windows.

    Now when I go into Device Manager, there are 4 things with yellow exclamation points.

    (1) network controller, which does not allow me to go on the internet.
    (2) PCI device
    (3) PCI Simple Communications Controller
    4-SM Bus controller

    Please tell me how I can fix or install these without going on the internet because I can't!

    Thanks in advance

    I don't know what model of laptop you have, but if you can not download the necessary drivers, I recommend you to reinstall the original recovery image and start using your laptop with 'presets' again.

  • BlackBerry Smartphones need help with resetting the voice message counter

    Recently, I moved the United States in India and brought with me my favorite Storm 9530. In the United States, I had Verizon as my career and I went to Vodafone in India. Prior to joining Vodafone, he had 5 posts not read/unheard voices and so my Storm showed o_o 5 on the home screen. After that I went to Vodafone, this count is reset. I tried all over the web for a solution to remove this notification of my camera, but can't find a viable solution. According to my understanding, I thought that the count resets automatically once I have activate my voicemail to Vodafone, but after I signed, I realized that the Vodafone India use no method of "Notification of device" for voice messages, but sends an SMS whenever you have a virtual machine. With this result, the number of old was put in my camera never gets reset or reset.

    Y at - there someone who can give me a solution for this reset? Is there a way/software that will let me access the device's internal data structures and reset. My carrier, Vodafone India already has informed me that they cannot help me with this.

    Thanks in advance.

    The solution does not work. The only thing you need to keep in mind is to first take a full backup of the device via Device Manager and wiping the device, DO NOT remove the third-party applications.

    I had to reinstall all applications that a lot of time.

  • Need help with editing the channels from document information

    I am trying to create a string based on information from the active document, which is then saved as text delimited by tabs for use in spreadsheets.

    I'm new to the script but I was able to get the info from Photoshop, but now I need to deal with some of them.

    Here's the info I want in the order I want: name of file, the file size (actual work or size), width in pixels, height in pixels, inches of width, height inches, image resolution, color mode.

    example: 5.3 MB 3810 3810 5 5 762 RGB CoolPicture_LYRD.psd

    Here is the info I got in return:

    CoolPicture_LYRD.psd3810 px3810 px5 px5 px762 DPIDocumentMode.RGB

    I need to make these changes:

    1. Add the size of the document
    2. Cut the shape px string OR convert the "px" in the chain of inches to the 'in '.
    3. short 6-digit numbers (for a number like 5.33333333333333 px)
    4. trim theDocumentMode. info from the color mode

    I tried using substrings which gets an error about the functions

    I tried ToString() and beach setting, but without success.

    any help would be appreciated. Thanks for the research.

    Here is my script so far

    //get the info from document that I need for my excel sheet
    var imageHeightPixels = activeDocument.height
    var imageWidthPixels = activeDocument.width
    var fileResolution = activeDocument.resolution
    var imageMode = activeDocument.mode
    // get size in inches from pixel based measurement
    var imageHeightInches = imageHeightPixels / fileResolution
    var imageWidthInches = imageWidthPixels  / fileResolution
    
    
    var imageName = activeDocument.name.toString()
    var imageDimensions = new File ("~/desktop/File Info Report.txt")  
    
    
    app.preferences.rulerUnits = Units.PIXELS
    
    imageDimensions.open('a');  
    imageDimensions.write(imageName + "\t" + imageHeightPixels + "\t" + imageWidthPixels + "\t" + imageWidthInches + "\t" + imageHeightInches + "\t" + fileResolution + " DPI" + "\t" + imageMode + "\n");  
    activeDocument.close(SaveOptions.DONOTSAVECHANGES)  
      
    imageDimensions.close(); 
    

    There you go Buddy:

    var doc = app.activeDocument;
    var currentUnits = app.preferences.rulerUnits;
    
    app.preferences.rulerUnits = Units.PIXELS;
    
    var fileName = doc.name;
    var fileSize = (File(doc.fullName).length / (1024 * 1024)).toFixed(2);
    var fileWidthPx   = doc.width.value;
    var fileHeightPx = doc.height.value;
    var fileResolution = doc.resolution;
    var fileWidthInch = (fileWidthPx  / fileResolution).toFixed(6);
    var fileHeigthInch = (fileHeightPx / fileResolution).toFixed(6);
    var colorMode = doc.mode.toString().split(".")[1];
    
    app.preferences.rulerUnits = currentUnits;
    
    var outputString = fileName + "\t" +
      fileSize + " mb\t" +
      fileWidthPx + "\t" +
      fileHeightPx + "\t" +
      fileWidthInch + "\t" +
      fileHeigthInch + "\t" +
      fileResolution + " DPI\t" +
      colorMode + "\n";  
    
    var logFile = new File ("~/desktop/File Info Report.txt");
      logFile.open('a');
      logFile.write(outputString);
      logFile.close();
    
    doc.close(SaveOptions.DONOTSAVECHANGES);
    
  • Need help with scaling the text

    I need to make a text vertically taller, but seem to have a problem with the scale tool. That's what I'm starting with:

    Screen Shot 2015-09-25 at 9.50.15 AM.png

    And when I try to step up that I end up with this:

    Screen Shot 2015-09-25 at 9.50.49 AM.png

    Any help would be greatly appreciated. Thank you!

    Use the scale options in the character, as in this case Panel

  • Need help to load the data from the Excel data to oracle tables

    I need to load an Excel worksheet to the Oracle table.

    The worksheet contains 20 columns, the first 8 columns contains basic information, but the rest 12 columns contains info like
    1stQtr_08, 2ndQtr_08, 3rdQtr_08, 4thQtr_08
    1stQtr_09, 2ndQtr_09, 3rdQtr_09, 4thQtr_09
    1stQtr_10, 2ndQtr_10, 3rdQtr_10, 4thQtr_10

    So what I have to do is:

    break only one record (with 20 fields) in Excel to 3 files for each fiscal year in the Oracle table for each record in the database table will look like

    8 base field + fiscal_year + 1stQtr_08, 2ndQtr_08, 3rdQtr_08, 4thQtr_08
    8 base field + fiscal_year + 1stQtr_09, 2ndQtr_09, 3rdQtr_09, 4thQtr_09
    8 base field + fiscal_year + 1stQtr_10, 2ndQtr_10, 3rdQtr_10, 4thQtr_10

    There are about 10000 rows in the data file, so how can I use sqlldr to perform this task? beside sqlldr, other good suggestions?

    THX

    External tables is just an API Oracle sqlloader. If you are about to load this data over and over again, the external tables would be a good idea, but if it's a one time thing, sqlldir is more simple, unless you want to just learn to use external Tables.

    I used to run a data warehouse, so I did it, the less similar to what you do in the past.

  • Need help with installing the driver Vista for Satellite A200-23U

    INSTALL THE

    WINDOWS VISTA
    N ° Version of the component name
    1 Windows Vista RTM
    2 native Intel ICH7M Chipset utility
    3 945GM Intel display driver
    or
    3 nVIDIA Display Driver G72MV-A3/NB7P-GS
    Realtek Audio driver ALC861D 4
    5 Realtek 8101E 10/100 / Driver LAN Gigabit 8111
    6 Synaptics Touch Pad Driver (with LuxPad)
    7 ALPS Touch Pad Driver
    8 card reader TI Multiple digital media
    9 TOSHIBA software modem
    10 Golan Intel Wireless LAN Driver
    11 Kedron Intel Wireless LAN Driver
    12 Atheros Wireless LAN Driver
    Camera Chicony 13 software
    14 Bluetooth Stack for Windows by Toshiba
    15 Bluetooth monitor
    16 TOSHIBA Value Added Package
    17 TOSHIBA Flash Cards Support utility
    TOSHIBA 18 hardware configuration utility
    19 TOSHIBA supervisor password
    20 TOSHIBA SD Memory utilities
    21 TOSHIBA ConfigFree
    22 TOSHIBA Assist
    TOSHIBA Speech System 23
    24 TOSHIBA Extended tiles for Mobility Center Windows V1.01
    TOSHIBA Fingerprint Utility V5.6.0.3221 25

    But the [code] http://eu.computers.toshiba-europe.com/cgi-bin/ToshibaCSG/download_drivers_bios.jsp?service=EU&mode=allMachi nes & action = search & teddProduct = 738 & selShortMod = 532 [/ code] I don't know what connection is No2 chipset driver (I use vista 32 bit), similar what link is No3 display driver.

    Can you help me to download 25 entry because I'm bad at computing :(
    Sorry because of my English... THX

    Hey Buddy

    You have a machine with the ATI graphics card. Am I wrong?
    If Yes, then the Chipset driver is ALREADY included in the ATI graphics driver that is available on the European driver Toshiba page!

    The order of installation displays the instructions step by step for all THE portable Satellite A200 PSAE6E but the fact is that devices were equipped with different material parts and that's why some single drivers do not appear or are not available.

    Once again; Utility/driver chipset is available/included in the ATI graphics driver

    Good bye

  • need help to load the image from a xml file

    (Based on the example of Chapter 10, ActionScript 3.0 for ADOBE FLASH CS4, IPC)
    By using the 'setSong' function, I shoot with success of the < artist > child of my xml data, no problem. But I also have to display the jpg file in the < image > node and I meet a lot of difficulties. I tried adding more variables to the setSong function, but am frustrated. Someone could shine a little light and point this beginner in the right direction?

    function setSongs (): void {}
    for (var i = 0; i < 4; i ++) {}
    var artistText:String = songList_XML.song [i + songCount] .artist;
    Customizer var = this ["song" + (i + 1)] .artist;
    clipArtist.text = artistText;
    }
    }

    myXML:

    <? XML version = "1.0" encoding = "utf-8"? >
    < songlist >
    song <>
    < image id = "1" > images/dummyFace1.jpg < / image >
    < artist > first guy < / artist >
    < album > Aliquam neque dui, sold at, egestas nec, egestas dignissim, tortor. < / album >
    < / song >

    song <>
    < image id = "2" > images/dummyFace2.jpg < / image >
    < artist > second person < / artist >
    ante < album > Nam. Metus had integer and lacus accumsan commodo. < / album >
    < / song >

    song <>
    < image id = "3" > images/dummyFace3.jpg < / image >
    < artist > third Fellow < / artist >
    < album > Cras non sem vitae massa pharetra sold. Integer outbound < / album >
    < / song >

    song <>
    < image id = "4" > images/dummyFace4.jpg < / image >
    Fourth individual < artist > < / artist >
    < album > surpassing ullamcorper quam and ipsum. Aenean sed lacus sit amet leo so restore. < / album >
    < / song >
    < / songlist >

    :

    function setSongs (): void {}
    for (var i = 0; i)< 4;="" i++)="">
    var artistText:String = songList_XML.song [i + songCount] .artist;
    Customizer var = this ["song" + (i + 1)] .artist;
    clipArtist.text = artistText;

    var ldr:Loader = new Loader();

    var urlR:URLRequest = new URLRequest (image songList_XML.song [i + songCount]);

    LDR. Load (urlR);

    LDR.x = Whatever (i);

    LDR.y = whateverelse (i);

    addChild (ldr);

    }
    }

    myXML:




    images/dummyFace1.jpg
    First guy
    Aliquam neque dui, sold at, egestas nec, egestas dignissim, tortor.


    images/dummyFace2.jpg
    Second person
    Nam ante. Metus had integer and lacus accumsan commodo.


    images/dummyFace3.jpg
    Third Member
    CRAs non sem vitae massa pharetra sold. Integer is.


    images/dummyFace4.jpg
    Fourth person
    Surpassing ullamcorper quam and ipsum. Aenean sed lacus sit amet leo so restore.

Maybe you are looking for