How can i increase size of applet

when i run my form in windows my applet don't visible full .how can change the size of applet.what property i have to set.i forget that property.

are you using an application server or the local OC4J container?
In both cases the height and width of your applet can be set in the formsweb.cfg file.
you can find this file under <oracle_home>/forms/server directory
search in the file for with and height
you can put a fixed size in pixels or in percentage of your screen resolution
hope it helps
Erwin

Similar Messages

  • How can you increase size of iweb photo album?

    In iWeb albums there seems to be a maximum of 500 photos or 5 pages.  Can you add more than 500 photos to the same album?  How?

    are you using an application server or the local OC4J container?
    In both cases the height and width of your applet can be set in the formsweb.cfg file.
    you can find this file under <oracle_home>/forms/server directory
    search in the file for with and height
    you can put a fixed size in pixels or in percentage of your screen resolution
    hope it helps
    Erwin

  • Oracle 11.2 default instance volume is 50 GiB - How can I increase size?

    Hi,
    I created an ebs Oracle 11.2 instance that defaulted to a volume size of 50GiB.
    Does anyone know how to increase the volume size to 300GiB?
    This didn't work:
    I created another volume (300Gib), attached it to the instance, mounted the drive, but when I ran the Oracle install script - that drive didn't show up:
    Select a disk device to store your datafiles and redo logs on:
    ID DEVICE_NAME
    [0] Refresh List
    [1] Use Default
    [2] /dev/sdc1
    Thanks.

    I didnt have any luck with the scripts it comes with the AMI so I just cut and paste of what I need heres the script I use.
    You can mount the 300G to /u02 or whatever you want
    and change the ORACLE_SID to <YOUR_SID_NAME>
    Also you have to run it as user oracle instead of Root
    and make sure that the ORACLE_HOME is correct
    ORACLE_SID=<YOUR_SID_NAME>
    SID=${ORACLE_SID}
    GLOBAL_NAME=${SID}
    SYS_PWD=s
    SYSTEM_PWD=s
    DBSNMP_PWD=s
    SYSMAN_PWD=s
    DBF_MOUNT=/u02
    FRA_MOUNT=/u02
    ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1
    DBCA_TEMPLATE_DIR=${ORACLE_HOME}/assistants/dbca/templates
    DBCA_TEMPLATE_NAME=${DBCA_TEMPLATE_DIR}/General_Purpose.dbc
    ORACLE_OWNER=oracle
    DBCA=${ORACLE_HOME}/bin/dbca
    SQLPLUS=${ORACLE_HOME}/bin/sqlplus
    EMCTL=${ORACLE_HOME}/bin/emctl
    DB_FILE_DIR=${DBF_MOUNT}/oradata
    RECO_AREA=${FRA_MOUNT}/flash_recovery_area
    CHARSET=AL32UTF8
    export ORACLE_SID=${SID}
    mkdir -p ${DBF_MOUNT}/admin/${ORACLE_SID}
    mkdir -p ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs
    mkdir -p ${DBF_MOUNT}/admin/${ORACLE_SID}/adump
    export EMKEY_LOCATION=${DBF_MOUNT}/admin/${ORACLE_SID}/dbs
    echo
    echo "Please wait while your database is created..."
    echo
    ${DBCA} -silent -createDatabase -templateName ${DBCA_TEMPLATE_NAME} -gdbName ${GLOBAL_NAME} -sid ${SID} -sysPassword ${SYS_PWD} -systemPassword ${SYSTEM_PWD} -dbsnmpPassword ${DBSNMP_PWD} -sysmanPassword ${SYSMAN_PWD} -emConfiguration LOCAL -storageType FS -datafileJarLocation ${DBCA_TEMPLATE_DIR} -sampleSchema true -datafileDestination ${DB_FILE_DIR} -recoveryAreaDestination ${RECO_AREA} -characterSet AL32UTF8
    RV=$?
    if [ $RV -ne 0 ]
    then
    echo
    echo "There was a problem creating your database.  Please review the log file shown above."
    else
    ${EMCTL} stop dbconsole
    ${SQLPLUS} /nolog << EOF
    ${SQLPLUS} /nolog << EOF
    connect / as sysdba
    alter system set audit_file_dest='${DBF_MOUNT}/admin/${ORACLE_SID}/adump' scope=spfile;
    EXEC DBMS_XDB.SETHTTPPORT(8080);
    ALTER USER anonymous ACCOUNT UNLOCK
    @${ORACLE_HOME}/apex/.apxxepwd_custom.sql ${APEX_PWD}
    shutdown immediate
    exit
    EOF
    mv $ORACLE_HOME/dbs/spfile${ORACLE_SID}.ora ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs/.
    mv $ORACLE_HOME/dbs/orapw${ORACLE_SID} ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs/.
    ln -s ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs/spfile${ORACLE_SID}.ora ${ORACLE_HOME}/dbs/.
    ln -s ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs/orapw${ORACLE_SID} ${ORACLE_HOME}/dbs/.
    ${SQLPLUS} /nolog << EOF
    connect / as sysdba
    startup mount
    alter database archivelog;
    alter database open;
    exit
    EOF
    ${SQLPLUS} /nolog << EOF
    connect sysman/${SYSMAN_PWD}
    @/home/oracle/scripts/osbws/submit_osb_cloud_backup.pls
    exit
    EOF
    ${EMCTL} start dbconsole
    echo
    grep ORACLE_SID /home/oracle/.bash_profile > /dev/null 2>&1
    if [ $? -eq 0 ]
    then
    echo "Not adding ORACLE_SID=${SID} to /home/oracle/.bash_profile"
    echo "because ORACLE_SID is already set in that file."
    else
    echo "Adding ORACLE_SID=${SID} to /home/oracle/.bash_profile"
    echo "export ORACLE_SID=${SID}" >> /home/oracle/.bash_profile
    fi
    OH="\/u01\/app\/oracle\/product\/11.2.0\/db_1"
    cp /etc/oratab /tmp/oratab.bak
    sed "s/${ORACLE_SID}:${OH}:N/${ORACLE_SID}:${OH}:Y/" /tmp/oratab.bak > /etc/oratab
    echo
    echo "The database was created successfully."
    fi
    echo
    echo
    /home/oracle/scripts/setup_osbws.sh
    echo
    echo "You can connect to your database as follows:"
    echo
    echo "Command Line: sqlplus sys/<your-password> as sysdba"
    echo "Enterprise Manager Database Console: https://${ORACLE_HOSTNAME}:<port number>/em e.g. https://${ORACLE_HOSTNAME}:1158/em"
    echo "Oracle Application Express (APEX): http://${ORACLE_HOSTNAME}:<port number>/apex e.g. http://${ORACLE_HOSTNAME}:8080/apex"
    echo "Actual ports numbers can be found in ${ORACLE_HOME}/install/portlist.ini file. If this is the first database being created on this machine, the above example URLs should work."
    echo
    echo "Thank You for choosing Oracle Database on EC2."Edited by: vxwo0owxv on May 11, 2011 1:01 PM

  • How can i increase a size of java plugin window in developer10g form?

    Dear Friends,
    I made a master detail form in developer10g form. In the form i m unable to see all the fields in java plugin window bcoz its small.
    how can i increase the size of java plugin window?
    Thanks in advance.
    Regards,
    Kamran

    Hi Kamran
    Just modify width and height values to 100% in the forms\server\formsweb.cfg file:
    # Forms applet parameter
    width=100%
    # Forms applet parameter
    height=100%
    After this restart OC4J instance.
    Hope this helps
    Regards
    Carlos

  • How can I increase the font size of my email when I print it out, it is printing tiny

    How can I increase the font size when I print out emails, it is printing tiny size?

    In the Print dialog window, click the small reveal-button to the right of the printer's name -
    The window will expand to show additional settings (similar to 'old' Page Setup) -
    Be sure "Scale:" is set to 100% and the 'Keep apparent font size' item is checked.

  • How can I increase the size of the bootcamp partition without having to delete or re-install windows? using a macbook pro (15-inch) 10.9.4.

    I'm using a macbook pro (late 2013 with mavericks-10.9.4 ). I installed windows using bootcamp but didn't estimate the storage I required correctly. So now I don't have enough storage in the bootcamp hard drive.
    How can I increase the Partition size between windows and mac without having to delete or re-install windows?
    Thanks,
    Advek

    Check out this explanation.

  • HT4863 How can I increase the file size limit for outgoing mail. I need to send a file that is 50MB?

    How can I increase the file size limit for outgoing mail. I need to send a file that is 50MB?

    You can't change it, and I suspect few email providers would allow a file that big.  Consider uploading it to a service like Dropbox, then email the link allowing the recipient to download it.

  • How can we increase the font size in Adobe Bridge CC 2014?

    How can we increase the font size in Adobe Bridge CC 2014?
    We use Windows 7 64bit computers and Dell High Density UltraSharp UP2414Q monitors with a resolution of 3840 x 2160.
    Other applications in Adobe CC 2014 work fine with this high resolution (Indesign, Photoshop) but I can't find where to adjust font size in Bridge.
    Right now menu items are hardly ledgible.

    Same problem.  Bridge is unusable with this micro font and no way to change it.
    I would call tech support but I don't feel like being on hold for two hours to talk to someone Adobe pays pennies a day in a loud call center who won't be able to help anyway. Fail.

  • How can I increase the hard limit of the stack size?

    Hi,
    My process gives an error of segmentation fault (SIGSEGV) that is caused because the stack limit is reached. I have a doubt about how to increase the stack size. I have tried change it with "ulimit - hard" but this size is 65532kb, and is very low for my process. How can I increase the hard limit?
    Thanks.

    When last I checked, the kernel had a fixed stack size limit.
    Do you have the source code to this application? If so, [see this Tiger stack size article|http://homepage.mac.com/eric.c/hpc/contents/documentation/How%20to%20in crease%20the%20stack%20size%20on%20Mac%20OS%20X.pdf], and specifically have a look at the +ld -stack_size+ mechanism; rebuild the code with a bigger limit.
    Entirely FWIW, this question would be more typical over in the developer forums or maybe in the Unix forum if you don't have Apple developer access. Better audience for application development and for software-related questions over there.

  • How can i increase the size of MBUF in SAP

    how can i increase the size of MBUF. anyone plz help me

    HI Zahid,
    What do you mean increase size of MBUF
    Is this a table ?
    if yes then you need to extend the tablesapce of table MBUF, no the table.
    using brtools you can extend the tablespace.
    Regards,
    Fendi

  • The font size in the menu bar is too small (unreadable). How can I increase font size. I have a new Samsung PC with high resolution screen.

    Hi the fnt size in the menu bar is too small (unreadable). How can I increase the font size. I have a new Samsung PC with high resolution screen.

    You must mean Photoshop Elements 11, not Photoshop.
    There is no ability to change the size of the menu font in PSE 11.
    note to mod:
    Please move to the Photoshop Elements forum.

  • How can I increase font size on LR windows?

    I would estimate the font size in my LR (and all Adobe windows) is a five. It's the same on all three of my computers, all of which are operating on Windows 8.
    The last time I raised this issue, I was told to change the screen resolution -- pretty poor workaround considering all my other apps operate at the recommended screen resolution for the three computer and one additional monitors I use.
    How can I increase the font size to make Adobe applications  usable on my computers?

    Hi,
    I also use Win 8.1 and I have a high DPI 13" screen that is at 1920x1080 resolution and it is satisfactory although small.
    LR (5.7 current) will not support screens with greater resolution unless you have razor sharp eyes.
    We just need to hope that the next release (6) whenever it comes has native support for high DPI screens.

  • I have Photoshop cs6 Ext on an ASUS laptop. How can I increase the font size of the contents of the FILTER Panel situated on bottom left of screen. The font size is extreamly small and almost unreadable. I have changed display parameters, not the resoluti

    I have Photoshop cs6 Ext on an ASUS laptop. How can I increase the font size of the contents of the FILTER Panel situated on bottom left of screen. The font size is extreamly small and almost unreadable. I have changed display parameters, not the resolution, to no avail.
    David.

    Paragraph breaks are good for readability. ;-)
    Have you noticed any difference between your MacBook and others at the Apple store? Wondering whether this is a configurable setting at the system level, i.e., DPI.
    You can default Firefox to a larger zoom level to avoid having to zoom every page. You'll still be able to adjust the size for individual sites as needed. It sounds as though you are aware of these add-ons:
    * Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    * NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/
    There are some discussions about changing coming in Firefox 22 (I think) to address higher density displays like the Retina display. So perhaps there will be a built-in setting to address this in the future.

  • How can i increase sga size in oracle 10g

    Hello friends
    how can i increase my sga size in oracle 10g
    Regards
    Vicky
    Edited by: Vignesh Chinnasamy on 31-Jul-2012 02:28

    HI
    **SQL> Show parameter sga ;**
    NAME                                 TYPE        VALUE
    lock_sga                             boolean     FALSE
    pre_page_sga                         boolean     FALSE
    sga_max_size                         big integer 2G
    sga_target                           big integer 2G
    **SQL> show parameter memory;**
    NAME                                 TYPE        VALUE
    hi_shared_memory_address             integer     0
    shared_memory_address                integer     0
    **[root@mte ~]# ulimit -a**
    core file size          (blocks, -c) 0
    data seg size           (kbytes, -d) unlimited
    file size               (blocks, -f) unlimited
    pending signals                 (-i) 1024
    max locked memory       (kbytes, -l) 32
    max memory size         (kbytes, -m) unlimited
    open files                      (-n) 1024
    pipe size            (512 bytes, -p) 8
    POSIX message queues     (bytes, -q) 819200
    stack size              (kbytes, -s) 10240
    cpu time               (seconds, -t) unlimited
    max user processes              (-u) 278528
    virtual memory          (kbytes, -v) unlimited
    file locks                      (-x) unlimited
    *[root@mte ~]#*

  • How can I increase the size of letters beyond that obtained by tapping?

    How can I increase the size of the letters beyond that obtained by tapping (but retaining reflow)?

    You may perform pinch to zoom operation , also known as two fingers zoom.  You may not see the animation in reflow as in to her modes , but the size of the letters should increase.
    -vaibhav

Maybe you are looking for

  • Calendar events on wrong days

    I am baffled. I sync my iPhone 3G with my PC's Microsoft Outlook. My events are correct in Outlook, but many of them show up on the wrong day on my iPhone calendar. These are both repeating and one-time events. For example, I have an all-day event fo

  • Problems installing HP LaserJet 1018 printer on new MacBook Pro

    Hi all, I just entered the wonderful world of Mac and I am really enjoying it. Too bad I waited so long. However, I have a problem installing my printer, an HP LaserJet 1018 printer, on my new MacBook Pro intel based computer. I checked at HP's websi

  • I have registered the wrong email address how do I change it

    I Have registered the wrong email address when setting up my iTunes how do I change it

  • Itunes 11.1.3 wont open?

    I installed 11.1.3 version of itunes and now it bounces once and then stops without opening. I tried reintsalling but it didnt work?

  • I want a ''Page not found'' page on my website! :)

    Hello there, ive got this website http://www.orlandosalsa.co.uk 1) And everytime i browse ''http://www.orlandosalsa.co.uk/images'' i get this: (i know this is supposed to happen but i dont want it to) So I would like somehow to hide this folder from