Web Forms 10g font size

Hi,
I've upgraded my Forms 6i client/server application to 10g but when I run my application, fonts's size is too small!
The application server is installed on a Linux OS.
Does anyone knows how do I increase font size?
Thank you in advance,
Carla Almeida

You must update the FontEntry.class in f90all\oracle\forms\engine\FontEntry.class
1.and modify the getMappingTable() method with linux client OS :
/* customize code start here */
if(s1.equals("linux"))
s = s + "_linux";
/* customize code end here */
2. create new java class named :FontMapping_linux.class
mapping customize font size with linux client just for example :
public static final int sDialog[] = {
8, 8, 9, 9, 10, 10, 12, 12, 12, 13,
15, 15, 17, 17, 18, 18, 20, 21, 22, 23,
24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
26, 27, 29, 31, 31, 32, 33, 33, 36, 36,
37, 37, 38, 39, 41, 41, 42, 42, 42, 44,
44, 45, 45, 46, 48, 50, 50, 50, 52, 52,
54, 55, 56, 56, 56, 57, 57, 58, 59, 60,
61, 63
3 . put updated & new class in path and re-jar and sign f90all.jar with new keystore , put f90all.jar in /AS904/forms90/java
4. add new parameter in /AS904//forms90/server/basejpi.htm :
<PARAM NAME="mapFonts" VALUE="yes"> in object tag
and
mapFonts="yes" in embed tag
5.finished ..
If you have more questions, you can send mail to [email protected] ,
maybe I can give you some suggestion.

Similar Messages

  • DW CS6, two column table in form, changing font size in 1st col and can't change in 2nd

    In DW CS6, I made a two column table in a form for label/data.  I reduced the font size in the 1st col (label) from 12 to 10px but can't change in 2nd col  (data).

    Give data an ID or Class name and style it with CSS. 
    For better answers, we need to see your code.
    Nancy O.

  • Web Gallery Template Font Size Adjustment

    When I am in the Web module and using one of the templates (Flash or HTML), I would like to be able to adjust the font size of all the text used for the titles, headings, captions, etc. In general, I find the default font sizes too small, especially on the Flash templates.

    Hi Swapna
    Try following:
    1. Test with standard Survey component. You can do this by removing assignment of enhancement set to a client.
    Use transaction SM30. Open table BSPWDV_EHSET_ASG to remove assignment. Now the standard component should be picked up during survey processing in Web UI.
    2. If the standard survey component is also not showing the note effect then you can check if the note is applied properly. There are some manual steps in the note which are normally overlooked.
    After applying the note the font size from the 'htmlb' tags will overwritten by a fixed font size specified in a css file(htmlb_style.css).
    After Applying the note please verify whether the htmlb_style.css is also imported. This can be done by the following steps
    1.Goto Transaction Se80, and then go to Repository browser.
    2.Select 'BSP application' from dropdown and the application as SVY_H.
    3.Expand the Mime folder. Here the file 'htmlb_style.css' must be present.
    4.Place the cursor on the 'htmlb_style.css' right click and select display from the menu. This would show the file with new font sizes.
    3. There is one more note from where you can download the latest css file(htmlb_style.css).
    Note 1356414 - Text gets cut off for long surveys
    Hope this helps
    Rupesh Patil

  • Smart forms and Font Sizes

    Hi,
    I'm creating a form and i am trying to place a title with font size around 50, and i tried creating a paragraph type with a font of this size in smart styles, the problem is when i am editing the text node, the font size appears to be right, but when i print it, the font gets much smaller, can anyone help on this?
    Regards,
    Leandro Fonseca

    Thanks, for the quick replies.
    I tried that, i created a paragraph type, and i can see a change in the font size, but its as if there is a limit to the size it displays, i place the font size at 50, but it does not shot that size, maybe a little bigger than normal, but not 50. The font i'm using is HELVE.
    Regards,
    Leandro Fonseca

  • Javascript to adjust form field font size by number of entered characters?

    I have a form field that asks for 'full name' (first, middle, last). It's posted large at the top of the form. Some people's names are short, some long.
    Is there a javascript way to adjust the font size used within a form field based on the number of characters entered into field?
    i.e. if the name entered is Joe Smith, the font size is 30pt, if it's Alexander Hamilton the font size is 20pt?
    Thanks!

    Uhm... because I never noticed that option before! hehe. Jeez.
    Gilad, thx much. That's exactly what I was looking to accomplish.
    (An aside: trying to find a specific Adobe solution or function isn't very easy. I always search the forums, the documentation, and Google before posting any question here. Seems like there are so many features in every product that change so frequently that finding even a simple answer is a challenge...)

  • Hierarchical tree in web forms 10g - form freezing

    I have an application with an hierarchical tree on one of the forms - the application worked fine as client/server back in forms 6 but now that it is web enabled in 10g there are problems with the tree causing the form to freeze, then the entire application has to be closed. It doesn't seem to matter if you are selecting a node or creating a new node both have caused the form to freeze. It doesn't happen all of the time but it seems that the longer the application has been in use the more it starts to freeze. Any ideas? Is there a known problem with trees in web forms? Thanks
    Joanne

    At the root of my tree is a patient (I work in the health care industry) and then for that patient there are clinic visits, surgeries, etc (there are 16 nodes at this level). and under each of these are dates when the visits occured (there can be an unlimited number of nodes at this level). This is some of my code for populating the tree:
    if :GLOBAL.patient_seq is not null then
    -- turn the tree on
    set_item_property('tree_block.tree_item', ENABLED, PROPERTY_TRUE);     
    set_item_property('tree_block.tree_item', NAVIGABLE, PROPERTY_TRUE);          
    lv_tree_id := find_item('TREE_BLOCK.TREE_ITEM');     
    --refresh the tree back to it's original state from the database                          
    Ftree.Set_Tree_Property(lv_tree_id,
         Ftree.RECORD_GROUP,
         FIND_GROUP('TREE_GROUP'));
    -- create the clinic visits branch
    wcchn_tree_items_pkg.get_visits(lv_visit_table, :global.patient_seq);
    for lv_counter in 1.. lv_visit_table.count loop
    lv_site := wcchn_locations_pkg.get_location_code(lv_visit_table(lv_counter).site);
    create_visit_node( lv_visit_table(lv_counter).visit_date || ' - ' || lv_site,
         lv_tree_id,
    lv_visit_table(lv_counter).seq_nr);
    end loop;
    Below is the procedure referred to in the above segment of code:
    PROCEDURE CREATE_VISIT_NODE (pi_date IN VARCHAR2, pi_tree_id IN ITEM, pi_seq IN NUMBER) IS
    lv_return_value NUMBER;
    lv_node_value varchar2(100);
    lv_search_node FTREE.node;
    BEGIN
    lv_search_node:=FTREE.Find_Tree_Node(pi_tree_id,                              'CLINIC VISITS',                         FTREE.FIND_NEXT,                         FTREE.NODE_LABEL,                         FTREE.ROOT_NODE,                         FTREE.ROOT_NODE);
    lv_node_value:='G' || to_char(pi_seq);
    if :GLOBAL.ACTION_INDICATOR = 'INSERT' then
              lv_return_value:=FTREE.Add_Tree_Node(pi_tree_id,                    lv_search_node,                         FTREE.PARENT_OFFSET,                          1,                                    FTREE.LEAF_NODE,                          pi_date,                                   NULL,                                    lv_node_value);
    else
              lv_return_value:=FTREE.Add_Tree_Node(pi_tree_id,                              lv_search_node,                          FTREE.PARENT_OFFSET,                          FTREE.LAST_CHILD,                          FTREE.LEAF_NODE,                          pi_date,                                   NULL,                                    lv_node_value);
    end if;
         FTREE.Set_Tree_Node_Property(pi_tree_id,                              lv_search_node,                              FTREE.NODE_STATE,                         FTREE.EXPANDED_NODE);
    END;

  • Slowness in deployment with web form (10g)

    Hi gurus,
    I was able to successfully migrate form 6i (C/S mode) to web form in 10g (10.1.2).
    However, the response in web form is far too slow due to network roundtrip involved. I looked at some of the articles and mentioned to remove synchronize function and it actually does show some improvement, however, we cannot always do so by just removing synchronize function.
    Is it true that implementation of javabean can reduce the amount of network roundtrips?
    Apart from that , is there other ways that can improve the performance.
    If there is any docs available for reference that will be great!
    Because the form currently use in production are quite large and it is not easily cut down to smaller form , so I need to know what other option I can consider. Otherwise, we need to consider .NET for the web version deployment.
    Thanks and regards,
    Ana

    Ana - why do you think that .Net would give you improvements - You can right a slow application in .Net just as easily as with Forms.
    First you need to identify WHERE the application is slow..using Java Beans will only help if the bulk of your performance hit is comms back to the application server - and remember, a Java bean doesn't magically appear on the client - it needs to be downloaded as well... .Check out.
    http://www.groundside.com/blog/content/GrantRonald/Oracle%20Forms/2005/07/15/Oracle_Forms_Can_you_get_it_to_perform_on_a_WAN.html
    as a starting point...and then maybe do some simple tests to find out where you think the bulk of the performance issues are..
    Regards
    Grant Ronald

  • When I print a web page, the font size is always the default (which is good for screen reading, but too big for printing), even when I use Text Zoom to make it smaller.

    How can I change the font size when printing web pages?

    When you zoom in, it is like using a magnifying glass - the underlying image remains unchanged, as you have found out.
    You may be able to enlarge the bird to some extent without distortion and without pixilation by resampling.
    Go image menu>resize>image size. Be sure that "constrain proportions " is checked in the dialog.
    More on this from the help menu:
    Photoshop Elements Help | Resizing
    If you google  this topic, you will get many hits.

  • Web forms seperate window size

    I am on a team supporting a forms application that is in the
    process of moving to the web. we use the seperateFrame="true"
    parameter to bring up the forms in a window outside the
    browser. However, the window is too small and must be resized
    manually. Is there a way to have the window automatically open
    with a large enough size? It is so small that the login box
    isn't even visible. Thanks.
    null

    Hello,
    in the Oracle Application Server_v4.0.7 you must generate a
    CWeb - cartrigde for your forms with a separate frame.
    In the height and wight values for the frame set your size.
    It works very well.
    All the best
    Klaus
    gaelle (guest) wrote:
    : Hello !
    : I have the same problem too...
    : Oracle support expert said me: this is a BUG. He would send
    : me a patch from August but I still wait for it.
    : Regards,
    : Galle
    : Ruy Chicaco (guest) wrote:
    : : Hi,
    : : I have the same problem in my apps.
    : : Let me know if you already have the solution.
    : : Regards,
    : : Ben Eadington (guest) wrote:
    : : : I am on a team supporting a forms application that is in
    the
    : : : process of moving to the web. we use the
    : seperateFrame="true"
    : : : parameter to bring up the forms in a window outside the
    : : : browser. However, the window is too small and must be
    : resized
    : : : manually. Is there a way to have the window automatically
    : open
    : : : with a large enough size? It is so small that the login
    box
    : : : isn't even visible. Thanks.
    null

  • Catch lost connection error in a Web Form 10g

    Hello,
    I have a aplication in 10g and want to catch in ON-ERROR a conection lost with OAS 10g r2.
    When i disconnect the network cable in a runtime form web, i need to exit form and go to intial start form, but apears this error:
    What i need is catch this error in a ON-ERROR before this error. If i catch in a ON-ERROR, i kill the form and resolve my problem.
    What can i do to resolve this ?
    regards,
    Gonçalo Pinelo

    unfortunately, that error cannot be trapped within forms.

  • Forms 10g window size in unix

    Hi, when I migrated from 6i to 10g I added some code to maximize window size in When-New-form-Instance trigger of the form. It works in windows but when I try to run the form in Unix the window size is not big enough to see the whole form. i tried to change the width and height properties of the window1 but still not working. after researching the forum I found out that i should change the width and height properties in formsweb.cfg. In formsweb.cfg the width is 750 and the height is 600 should I change those numbers ? to what? and would it miss the rest of my application? or not? Please let me know it is urgent... Thanks in advance for helping...

    Just like on Windows, the Developer suite will be installed in a similar directory structure on Unix. In order to change the UNIX file, you will need to be logged in as ORACLE on the UNIX server or your account will have to have Read/Write priv's on the formsweb.cfg file. First, will need to navigate to the ORACLE_HOME directory (typically it will be something like: /usr/oracle/ias10g/ depending on how it was installed on your server). Once in the ORACLE_HOME directory it is just like your workstation. The "formsweb.cfg" will be found in the /forms/server/ directory. If you put that all together, based on my example, the path to the formsweb.cfg would be: /usr/oracle/ias10g/forms/server/formsweb.cfg. If you have made it this far, I recommend checking the file permissions on the file.
    Type:
    ls -l *.cfgHere is an example from my test system.
    -rw-------    1 oracle   dba           22286 Aug 21 07:43 formsweb.cfgAs you can see in my example, the formsweb.cfg file is owned by the "oracle" user and "dba" group. Only the Oracle user has privileges to Read or Write to the file.
    In this example, both the owner and the group have read write priv's to the file.
    -rw-rw----    1 oracle   dba           22286 Aug 21 07:43 formsweb.cfgMore than likely, you will need your UNIX administrator to modify the file for you.
    Hope this helps.
    Craig...
    If my response or the response of another was helpful, please mark it accordingly

  • Web form status line size

    are there any way to maximize the font of the status line appears in the form??

    If it is already there, then I'm assuming that you'll have data at a particular intersection. (if that is correct) then use @RETURN i
    if (division->some member <> #Missing)
    Return the message you want to display
    else
    continue the calc
    end if
    An example is here Oracle - Hyperion Labs......: @RETURN - Planning Business Rule validation function and @RETURN
    Regards
    Celvin
    http://www.orahyplabs.com

  • Change font size in Forms Builder?

    I wonder if it's possible to make the Forms Builder font size larger, say size 14? The purpose is to make a Forms presentation easier to follow with a big audience.
    //Martin

    About all you can do is set the screen settings down, which results in everything on your screen being larger. Try 800 x 600.

  • Forms 10g : How to increasethe font size ?

    Hi All ,
    I want increase the font size in general for all the forms in my application.
    Could anyone please let me know which file needs to be configured to increase
    the font size in forms 10g ? Also what entries do I need to modify in it.
    Thanks,

    You might check the Forms Services Deployment Guide and the Oracle Forms Online Help.
    If all of your forms use the default font, then the first link may work for you. If not, then you may have to go into each form. You might also search the online help for how to use SmartClasses.

  • After the recent update the entire browser, including menus, icons, and everything on the web page, are too small. Fonts are smaller, pics are smaller, zoom settings will not remain universal. Minimum font size will make text readable, but all pics are to

    The new update has screwed up my browser settings, I cannot get them fixed and Im pissed because my computer is an eye-sore to read until this is fixed! EVERYTHING in the browser is smaller, fonts, menus, icons, web page content, pictures, tables, etc. I have set the minimum font in the settings and the text is just to a point where it is easily readable at the maximum size setting, but all the menus and icons are still tiny and hard to read. The last version I had installed worked fine with no add-ons needed. Everything fit the screen fine and was easily readable without modification. I want this version off my PC and I want the last version I had back on but I dont know what version it was!!!!!!! ARARGGGG
    In fact, this stupid troubleshooting window that I am in filling out this form doesnt fit the page right at all, and edges of the text are cut off, so Im not even sure what some of these boxes are asking for!!

    See [[Toolbars and page content appear too large after upgrading to Firefox 3]]
    *Try to adjust the DPI setting, see http://kb.mozillazine.org/layout.css.dpi
    *Try to set the pref layout.css.devPixelsPerPx to 2 on the about:config page.
    To open the ''about:config'' page, type '''about:config''' in the location (address) bar and press the Enter key, just like you type the url of a website to open a website.
    If you see a warning then you can confirm that you want to access that page.
    If you need to increase (or decrease) the font size on websites then look at:
    Default FullZoom Level - https://addons.mozilla.org/firefox/addon/6965
    NoSquint - https://addons.mozilla.org/firefox/addon/2592

Maybe you are looking for

  • Aggregation at hierarchy node

    I have following data in the cube. Material     qty M1          20 M2          30 M3          -20 M4              50 And Master data - Material Hierarchy is Material Hierarchy Mgrp 1   M1   M2   M3   M4 I need to display only quantities with positive

  • Leopard Crashed and now won't boot

    Hi there, I was surfing the net earlier with my black macbook, with leopard updated to the most recent updates. But as I was on Safari opening up another webpage, the spinning beach ball bigins (just like a normal safari crash, or like an overload),

  • Howto run Distiller in unsafe mode?

    Hi, I have to convert a Postscript file into PDF which, during the distillation process, creates and writes to intermediate, named text files using the filename (w) file Postscript operator. However, this requires Distiller to be run in unsafe mode.

  • Since starting a new user account, unable to install software

    I had some problems with ColorSync not working correctly in my normal account, so I created a new admin account and started over from scratch in that one. I've had a whole lot of problems with permissions or privileges or something, and have been bat

  • Buying from the UK store?

    Why can't I buy music from the U.K store and only the U.S Store?