How to make form objects dynamically fit into window sizes?

Hi,
Form objects are always static. i.e, stick to the disigning time window size/resolution.
When the resolution changes, the form objects will not strech to the new window size.
Many of the clients are unhappy with this incapable feature.
Is there any way to come out of this problem?
Thanks and Regards,
Vishwanath

In teh hierarchy view - click on the Master Page/ Page1. Now on the object palette on the Master Page Tab you can choose a Paper Type. If you scroll to the bottom of the list you can choose a Custom size. The width and height dimensions are now available to you. The UI in designer limits you to 59 in. If you need more than that there is a way to get bigger but you have to do it in the native XML format. Let me know if you need more than that. Here is a modified sample.
Paul

Similar Messages

  • How to make Form builder 10g step into libraries *.pll while remote debug

    How to make Form builder 10g step into libraries *.pll while remote debug. It attaches fine and goes through code located in form but skips pll's. In this case I am interested in debuging CUSTOM.pll. How to step into pll's and is it possible at all?

    Is the library in the same directory or within your FORMS_PATH? Note that the runtime setting in the default.env doesn't work for the builder.
    cheers

  • HOw to make an Object oriented alv respond to double click

    Hi all,
    HOw to make an Object oriented alv respond to double click.SAmple code will be helpful.
    Thanks in advance,
    Alex.

    Hi,
    1. Create a Control (for Custom and Split Containers only)
    2. Instantiate a Container Object (in case of Custom and Split Containers, specify the control which is created by us in Screen painter) CREATE OBJECT
    3. Instantiate an Object of the kind of report that has to be displayed (List, Grid or Tree). CREATE OBJECT . Here we need to specify the Parent Container as the so that it sits in that container.
    4. Call appropriate methods to display the report on the screen. CALL METHOD ->
    DATA : g_dock TYPE REF TO cl_gui_docking_container,
    g_split TYPE REF TO cl_gui_easy_splitter_container,
    g_cont1 TYPE REF TO cl_gui_container,
    g_cont2 TYPE REF TO cl_gui_container,
    g_grid1 TYPE REF TO cl_gui_alv_grid,
    g_grid2 TYPE REF TO cl_gui_alv_grid.
    i_mara is an internal table of structure MARA
    SELECT * FROM mara INTO TABLE i_mara.
    i_kna1 is an internal table of structure KNA1
    SELECT * FROM kna1 INTO TABLE i_kna1.
    To create an Object of type Docking Container
    CREATE OBJECT g_dock
    EXPORTING
    side = cl_gui_docking_container=>dock_at_top
    extension = 200 .
    To Create an Object of Type Split Container. Here we can see that the Docking *Container Created above has been used as a parent .
    CREATE OBJECT g_split
    EXPORTING
    parent = g_dock
    orientation = 1 .
    Easy Split container splits one Control into 2 manageable controls, each of them is used * to handle one GUI Container each
    g_cont1 = g_split->top_left_container.
    g_cont2 = g_split->bottom_right_container.
    To Create an Object of type Grid . Here we can see that the Left Split Container * Created above has been used as a parent .
    CREATE OBJECT g_grid1
    EXPORTING
    i_parent = g_cont1 .
    To Create an Object of type Grid . Here we can see that the Right Split Container * Created above has been used as a parent .
    CREATE OBJECT g_grid2
    EXPORTING
    i_parent = g_cont2 .
    The method of Grid Control Object is used to display the Data.
    CALL METHOD g_grid1->set_table_for_first_display
    EXPORTING
    i_structure_name = 'MARA'
    CHANGING
    it_outtab = i_mara[] .
    The method of Grid Control Object is used to display the Data.
    CALL METHOD g_grid2->set_table_for_first_display
    EXPORTING
    i_structure_name = 'KNA1'
    CHANGING
    it_outtab = i_kna1[] .
    Regards
    Hari

  • How to make any object self-shining?

    hi,
    i guess thats an easy question, but i dont know where to look for the answer.
    so how to make any object self-shining like the infamous colorcube, so that one does not need to place any light?
    and am I right in my assumption that doing so will reduce the need of rendering power, since lights dont have to be computed?
    thanx,
    Usul

    I'm not sure what you mean here- if your object is lit then lighting will need to be calculated. If you don't want shapes to be lit, I think you can disable it by calling setLightingEnable(false) in their materials.

  • How to make an object mutable?

    Can any one tell me how to make an object mutable?
    Following is Class X & Y?
    class Y
    public static void main(String arg[]) {
    X a1=new X();
    Object a=a1.get();
    System.out.println(a.toString());
    a1.set(a);
    System.out.println(a.toString());
    class X implements Serializable
    public Object get(){
    return new Object();
    public synchronized void set(Object o)
    o=null;
    In my class Y when i say
    a1.set(a);
    I want local Object a of main method should be nullified.
    Can it be possible if yes what is the way or code to be applied so that
    my next a.toString() statement will give me NullpointerException.

    Isn't it more accurate to say that object references are passed by value?
    OP -- Basically you can't to what you want to do. When you "pass an object" as a method parameter, what you're really passing is a copy of the reference that points to the object. You now have two refs pointing to the same object--one in the caller and one in the method being executed. Setting either of those refs to null does NOT affect the object itself, and does NOT affect the other ref. It just means that the ref that's been set to null no longer points to any object.
    If you want the called method to make a change that the caller can see, you need to either 1) return a value from the method, 2) encapsulate the object to be changed as a member of new class, or 3) pass the object to be changed as the single element of an array. I would STRONGLY recommend against (3) as a way to simulate pass by reference. Better to examine your design and determine whether (1) or (2) more closely matches what you're really trying to accomplish.

  • How to make an object distributed across multiple jres?

    Hi,
    We used cache data mechanism for performance tuning. It will store data in static variable (Hashtable) and get initialized when app starts . We are using IPlanet Application Server and
    Using 6 KJS engines. This object ( Hashtable) is not distributed across all JRES.It has to reinitialize data again when request goes to any other KJS.
    We avoid sharing data in session and request, as data is huge.
    Can any one help us how to make this object distributed across all KJSs?
    Thanks in advance.
    raj

    We used cache data mechanism for performance tuning.
    It will store data in static variable (Hashtable) and
    get initialized when app starts.
    We are using IPlanet Application Server and
    Using 6 KJS engines. This object ( Hashtable) is not
    distributed across all JRES. It has to reinitialize
    data again when request goes to any other KJS.
    We avoid sharing data in session and request, as data
    is huge.
    Can any one help us how to make this object
    distributed across all KJSs?When you say 'initialized when app starts' do you mean iPlanets StartUp classes, rather than the Servlets init() ? Given a 'huge' dataset, avoid the latter.
    I'd suggest that a better approach is to implement this as an Entity Bean and accessed from Session bean and using Value Objects to return the data subsets.
    Checkout the Java Pet Store
    http://java.sun.com/blueprints/code/jps13/datasheet.html

  • How to make Shape3D object translucent

    Hi,
    How to make Shape3D object (like Box, Cylinder) translucent? I tried the below option but the box is not becoming translucent at all.
    final PhongMaterial redMaterial = new PhongMaterial();
              redMaterial.setSpecularColor(Color.rgb(10, 255, 15, opacity));
              redMaterial.setDiffuseColor(Color.rgb(10, 255, 15, opacity));
    final Box box = new Box(width,height,depth);
    box.setMaterial(redMaterial);
    When opacity is 1, the color of the box will be Green, when it is 0 the color becomes black.
    Is there any way the box can be made translucent?

    There is at least one unresolved issue concerning PhongMaterial's transparency: RT-28874.
    I'm neither able to get it working properly. My red Sphere also fades to black while varying the opacity value from 1.0 to 0.0.
    August

  • How to make form based authenticaiton in adf security?

    Hi all
    How to make form based authenticaiton in adf security?
    help give example video or project.
    Thanks lhagva

    Have you read the docs (http://download.oracle.com/docs/cd/E17904_01/web.1111/b31974/adding_security.htm)?
    Timo

  • How to make links in dynamic text?

    Hi All,
    I need to know how to make links in dynamic text. I have
    created a
    table to hold the dynamic copy, and the copy is added through
    a CMS page
    that I created. This Admin page is accessed through a
    browser, and I
    don't know how to attach a link to selected text within a
    browser. Can
    anyone point the way? It's probably so easy I'll feel dumb.
    Thanks,
    Brett

    "Brett" <[email protected]> wrote in message
    news:fpf7j6$23m$[email protected]..
    > Thanks Hunter,
    >
    > Yes, I suppose a legend on the admin page would provide
    a solution. And
    > ultimately, if the client doesn't feel confident doing
    writing the HTML
    > they would have to pay me to do it for them. OK, that
    works for me.
    The only other thing might be to use something like FCK (or
    one of the many
    others... ContentSeed, I think is one Murray mentions often)
    for the CMS,
    that would give an easier option for the end user. WebAssist
    has an
    FCK-based plug-in called iRite that can give a more
    wordprocessing-like feel
    to the field (i.e., they could just highlight the text and
    then click a
    button to add the link).

  • Getting "Table %TEMPLATE does not fit into window" error

    Hello,
    I am trying to print a form to an old EPSON DFX-9000 dot matrix printer and am getting the error message Table %TEMPLATE does not fit into window".
    This only happens when I go to that printer.  I can print fine to a laser printer.
    I have tried creating a new device type and copying over the format from the laser printer, playing with the format, changing formats, ect.
    I have adjusted the size of the window that my template cannot allegedly fit into but still no luck.  I have checked the height and width of the template and the window many, many times and still get the same error.
    Has anyone seen this before?  Please help.   Thanks.

    Hi James,
    You need to see the width and height of the Page Format which you have set in Form Attributes of your smartforms.
    What ever you create should be within this width and height .
    So accordingly adjust the width and height of your windows and components within them
    Regards,
    Dep

  • Table does not fit into window.

    Hi Guys,
    When I execute the Smartforms I get this message ? '
    "Table does not fit into window."   any guess why this message ?
    Regards

    >
    P R Raghu wrote:
    > "Table does not fit into window."   any guess why this message ?
    > Regards
    If TABLE does not fit WINDOW try to take it through the DOOR LOL
    Doesn't the error seems self explanatory to you?
    Regards
    Karthik D

  • Error:   Table TEMPLATE_HEADER does not fit into window.

    Hello Experts ,
    I met a very strange problem.
    I am printing a process order using smartform.
    for other process nrs , print perfect.
    But only for a certain precess nr, I got a popup error 'Table TEMPLATE_HEADER does not fit into window.'
    At beginning , I suppose my table line extend the mainwindow width. But infact , no!
    I try to comment every node one by one, I found the reason: I put a table line into a loop node, if I add a text node which has something inside, it will triger this error. (only for this process order, others works fine)
    so , does someone met this error before ?
    Please help me!!
    Regards
    Kevin

    Hi Kevin,
    Which printer and device type do you use? For line printers and device type(driver STN2) like e.g. EPESCP9, the SAP system
    must use spaces and empty lines to place the text. This is a limitation of the ESC/P printer languagesa per SAP note #19807.
    For this, the Smartforms rounds all coordinates(of the table cells and the window). Only after this step it checks, whether the table fits into the window. So if the table size is quite close to the window size size, it may happen on line printers that the table doesn't fit anymore.
    If this is the reason for your problem, the error message should vanish if you increase the size of the window containing table TEMPLATE_HEADER a little in your smartform.
    Regards,
    Aidan

  • Can 3 vertical Radio Buttons span 3 rows in a table? AND how to make form highlight when radio butto

    I am trying to add 3 grouped vertical radio buttons where one is on each line of a 3 row table. When I group the 3 buttons it squeezes them into one row, is there a way I can have them grouped and one in each.
    Also, I would like to know how to make part of the form highlight when one of the 3 buttons is selected

    Hi,
    If I am not wrong, a table cell can hold only one component or none. In order to place the radio group to different positions vertically, you can use subforms instead of table.
    Asiye

  • How to make the objects got even distance in the Blend?

    Wondering anyone has the same experience or not? I blend 2 circles together and adjust the spine from a straight line to wave curve line by adding points and adjusting the handles of the points. The space between the objects along the spine turn to uneven after that. I tried to use the "specified distance" in the option and add more points and modify the handles again. However, all in vain. Finally, I need to expand the blend and adjust the distance of those objects manually. Any suggestions to correct the stupid way? Thanks.

    There is not really any way to get even spacing in a blend when the spine path has uneven curvature. (What the Specify Distance option does is take the length of the path, and divide it by the requested distance to determine the number of blend steps, but then once it has that number, they get spread out by exactly the same algorithm that is used when the number of steps is specified by a fixed number or calculated from the color difference.)
    The length of the direction handles on a spine path affects the placement of objects, with longer direction handles pushing the blend steps away from the anchor point, and shorter direction handles pulling them in towards it. This tends to make the objects more tightly spaced when the path has sharp curves, and more loosely spaced where it is flatter.
    If the direction handles are of equal length, and the distance between the two direction points is the same as their length, such as occurs on a circle, then the "pulls" balance out and the spacing ends up even. But when the curvature varies, so does the spacing.
    This can be used to advantage to get non-linear gradations, by making a straight line and then pulling out direction handles that lie along the line. It can also be used to make objects on an elliptical orbit appear to be spaced in perspective, since they are closer together at the sharp ends of the ellipse and farther apart at the flat sides.
    Often, however, what is desired is spacing that is independent of the curvature, such as you get with scatter brushes.
    It was fully intended when live blends were implemented in AI 8 that even spacing would be an option, and would indeed be the default option, with logarithmic spacing and direction-handle controlled spacing being two other choices. The direction-handle controlled spacing was just implemented first not because it was most useful (it isn't) but because, believe it or not, it is
    easiest. (Points on the interior of a bezier curve are natively addressed by t-value, which is a fraction of the direction handle distance. To obtain a position that is a fraction of the path length, one must first flatten the entire path into a polygonal approximation, then find the position by adding up the lengths of the flat segments. In contrast, one can obtain a point at a given fraction of the bezier t-value without flattening the path. This is the reason, by the way, that while scatter brushes have more even spacing between objects, they do not fit as tightly to the bezier as blend steps do - they are being placed on a straight line approximation of the path instead of directly on it.) The intention was to get the easy case of t-value based spacing working, and then add the harder case that requires flattening.
    It turned out that we did not have time to add the extra options for AI 8, so it shipped as is. Then Macromedia sued us over live blends because Freehand had them first and as part of the settlement we had to promise to stop enhancing them. Now that the two companies have merged, that issue is moot, so enhancing blends is now a possibility for future versions of Illustrator. (All of you who complain about the cool features that Freehand has had for years and Illustrator hasn't, as if it were perverse and intransigent of Adobe not to follow suit, might want to keep in mind that copying the features of another company's software is often not allowed.)
    In the meantime, scatter brushes can be a good alternative if all your blend steps are the same, but obviously they won't work if your blended shapes are changing along the path.

  • How to make form register in adobe edge?

    hy, how to make coding form register in adobe edge? please help me

    hy, master uboss..
    could i ask again?
    i was tried it as your suggestion but after i fill it data still cant send to database..
    could you give some suggestion longer?
    file connection.php
    <?php
    $host = "localhost";
    $user = "root";
    $password = "";
    $database = "register";
    mysql_connect($host,$user,$password) or die ("database tidak terhubung, cek koneksi");
    mysql_select_db($database);
    ?>
    file proses.php
    <?php
    include "koneksi.php";
    $password=$_POST['password'];
    $username=$_POST['username'];
    $email=$_POST['email'];
    $fullname=$_POST['fullname'];
    $query=mysql_query("insert into daftar(password, username, email, fullname)
    value('$password','$username','$email','$fullname')");
    if($query){
    echo "Data Berhasil ditambah";
    ?><a href="/bukutamu.php">  Lihat Data Masuk</a><?php
    }else{
    echo "Gagal input data";
    echo mysql_error();
    ?>
    file login.php
    <!DOCTYPE html>
    <html>
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
      <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
      <title>Senza nome</title>
    <!--Adobe Edge Runtime-->
        <meta http-equiv="X-UA-Compatible" content="IE=Edge">
        <script type="text/javascript" charset="utf-8" src="login_edgePreload.js"></script>
        <style>
            .edgeLoad-EDGE-1488021 { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <form action="proses.php" method="POST">
    <body style="margin:0;padding:0;">
      <div id="Stage" class="EDGE-1488021">
      </div>
    </form>
    </body>
    </html>
    after submit
         database---->>> stil blank...

Maybe you are looking for

  • Creation of TAX code in FTXP  SCREEN ..

    Hi guru’s Can anybody explain , hot to maintain the tax code for below mentioned structure. Bed16% ed2%secess1%8.5%deductible4%non deductible. Please explain me step by step  inFTXP.. what are inputs I need to give.because i don't know the basic in F

  • How to set default codepage in PI 7.0 for repository datatypes

    Hi when creating a "data type" in PI 7.0 repository it sets the codepage to ISO-8859-1. Where does it get that from and how can we change it? Thx for your help

  • Re: Massive COMPLAINT: Mis-sold Infinity, cancelle...

    They are 5 and a half hours ahead so 6.00pm is coming up to midnight there. To say thanks for a helpful answer, please click the white star

  • Conflict with Microsoft Outlook

    Since installing Adobe Acrobat 8 Standard Edition, occasionally when I close Outlook I get an error message stating something like "An error has occurred and Outlook must close". I read a post that said I should completely uninstall Acrobat and then

  • Can i get intel put on my power mac 10.4.11

    Can I get my non-intel power mac 10.4.11 upgraded to intel? I am running into lots of problems because of it being an older system (although it works great) it is not compatible with iphone and even itunes cannot take new upgrade download.