Dynamic Re-size of Canvas

I have a tab canvas and a stacked canvas displaying in the same window. When I re-size the window I want to adjust the viewport size so I can see more of the fields on the canvas (without having to scroll). What is the best way to do this?
Canvases
1) mnt_menu - tab - height=412, width=180
2) search_results - stacked - height=324, width=400, viewport height=324, viewport width=180
Window
Main Window - height=450, width=162

I used to serialize the object and inspect the size of
the file.
This way it worked fine for me.
Hope this helps!
Ajith Kallambella M
Forte Systems Engineer,
International Business Corporation.
I am trying to find the size of an object in memory.Can someone tell me
what the best way is?
If I store the object in a MemoryStream, the Size()method return the
total bytes in the stream, but
does this correspond to the size of the object inmemory?
Regards,
Peter Kelly-
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive<URL:http://pinehurst.sageit.com/listarchive/>
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

Similar Messages

  • Increasing size of canvas file in Illustrator CC 2014, for master project file purposes

    Hello, our company is using Illustrator CC for digital design, we would like to keep all the design screens in one files on different artboard,
    because of the convenience of changing global colours, character styles and symbols.
    Is there any way to increase the size of canvas file, or do any plugins exist for this?
    Many thanks

    Clockiebox,
    In addition to what Monika said, you may consider which is worse, to scale down to have all Artboards fit into the 16,384 x 16,384 points Workspace (and scale up in connexion with printing, which is relatively straightforward with Acrobat/Reader), or to have Artboards spread over multiple Layers/documents.
    If you scale down, remember to scale up Effect>Document Raster Effects Settings resolution and raster image resolution (using the reverse scaling factor).

  • Dynamic page size

    Hi,
    I need to run the same RTF template for US and Europe.
    The only difference is page size.
    US is using "Letter" page size, Europe is using "A4" page size.
    I can distinguish the page size by organization.
    Is there a way that I can have one template with dynamic page size, or I have to have two different templates?
    Thanks,
    karmit

    When the data is generated, can you determine who it is for (letter-sized or otherwise)? Once you pick off a value that identifies the page size, you can let a variable for lines per page (see the fixed lines per page example on Tim's blog) and base the page break on the paper size.

  • Maximum Artboard Size (Not Canvas Size)

    Hi,
    I read that maximum canvas size is 227in but Illustrator CC on both mac and windows and several different computer does not allow me to exceed 120in x 120 in. I can change my artboard size manually (shift+o) and drag the corners to 227inches but the number on the right upper corner is stuck on 120 inches. So what is the maximum size that I can work in Illustrator? If it is 227in why can't I make an Artboard bigger than 120 inches? And to avoid more confusion what is the canvas and what is the art board?
    Thank you

    mus,
    When things become seriously weird, as in your case, it may be worth trying the list (you have been through 1) and 2) already, and I would suggest your skipping 3) and 5), which leaves 4) and 6).
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media, see below. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible), for CS3 - CC you may find the folder here:
    https://helpx.adobe.com/illustrator/kb/preference-file-location-illustrator.html
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall (ticking the box to delete the preferences), run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Dimension Filter - Dynamic popup size?

    Hi,
    I have a small problem.
    One of my dimension filters have a hierarchy dimension assigned. Depending on the expansion of the preferred hierarchy selection, the user cannot see the whole text.
    I know that I can change the size of the Dimension Filter with the settings Popup Width and Popup Height, but is it somehow possible to change the size dynamically depending on the expansion of the hierarchy?
    Br
    Max Rosén

    Hi Max,
    As far as I know there is really no such setting in Design Studio that would enable that.
    There is also no way how to achieve this with the available scripting methods, if there would be something it would be in theory something like this:
    In the OnChange Event of the table cell width where the hierarchy is or based upon the expand level state of the hierarchy in the filterpanel, adjust the width of the filterpanel and the width of the table cell where the hierarchy is.
    There should be a solution to do this via javascript, but for that you would need to use the sdk to include some custom javascript code into your bi app.
    Normally your requirement can be achieved with/through css, there is a method/way that causes the width of the parent container to expand/adjust automatically when the width of the child element changes. But the problem/difficulty here is, that the filterpanel is created with a lot of absolutely positioned divs (containers) here and there and thus several stacking contexts are created and thus a change in one stacking context has no effect on an element which is in a different stacking context - a change in the width of the table cells where the hierarchy is placed has no effect on some other higher/previously positioned parent container elements because they are in different stacking contexts and when a container's width isn't adjusted too, the inner child element has no way to expand and still be/remain visually nice as a whole.
    Anyway, so far I didn't help you much, so here is something you could use to make the text visible/readable without expanding the width:
    /* Make Long Text (in Hierarchy) in Dimension Filter Visible (Break Into a New Line) */
    #sap-ui-static .sapzenfilterpanel-PopupContainerDialog div.sapUiTableCnt div.sapUiTableCCnt table.sapUiTableCtrl tr.sapUiTableTr > td:nth-child(1),
    #sap-ui-static .sapzenfilterpanel-PopupContainerDialog div.sapUiTableCnt div.sapUiTableCCnt table.sapUiTableCtrl tr.sapUiTableTr > td:nth-child(1) span.sapzenfilterpanel-SelectionTableText {
      white-space: normal;
      /* Optional setting: break to newline anywhere in a word */
      /*word-wrap: break-word;*/
    (Note: you can simplify/adjust the selectors, this is not the only way how the selectors must look like, it is just an example, but working example...)
    A side note when using the setting: "Member Display: Text and Key"
    The Dimension filter has 3 columns: 1. Text , 2. Key , 3. Check(boxes)
    where the first 2 columns for text and key are the same width. But usually the key is shorter than the text and doesn't need so much space, so you could adjust the width proportions of these first 2 columns so that the text has more width than the column containing the keys:
    /* Make Text Column Wider and Key Column Narrower */
    div.sapUiTableCnt div.sapUiTableColHdrCnt div.sapUiTableColHdr > div:nth-child(1) {width: 207px !important; /* Default Popup width: 350px > 147px , 147+60=207 */}
    div.sapUiTableCnt div.sapUiTableColHdrCnt div.sapUiTableColHdr > div:nth-child(2) {width: 87px !important; /* Default Popup width: 350px > 147px , 147-60=87 */}
    div.sapUiTableCnt div.sapUiTableCCnt table.sapUiTableCtrl tr.sapUiTableCtrlCol > th:nth-child(1) {width: 207px !important; /* Default Popup width: 350px > 147px , 147+60=207 */}
    div.sapUiTableCnt div.sapUiTableCCnt table.sapUiTableCtrl tr.sapUiTableCtrlCol > th:nth-child(2) {width: 87px !important; /* Default Popup width: 350px > 147px , 147-60=87 */}
    Regards
    David

  • Dynamic history size of xy chart buffer

    Hi all..
    My question is that when I wanna plot dynamic xy graph I should use xy chart. Till here everything is ok. But the option""history size"of xy chart buffer forces me to determine how many points of history data will be displayed. But  what i want is that not fixing it, i wanna see all measurement points till i stop the measurement. thats why i connected to history size option to loop number indicater so that after each measurement i would be able to see all the previos datas till i stop the loop. But it doesnt work!! Does my approach is wrong?

    Sima is right.
    You cannot have an unlimited history size on a computer with limited memory and resources (Yes, even gigabytes is not infinite). If course you can make your own history buffer by growing the x and y data in shift registers, but at one point during run the system will bog down due to constant memory reallocation operations. Also you cannot possible display more data that fits on a typical screen.
    Typically there is some knowledge on an upper boundary, so you can preallocate suitable buffers. If the history is bigger than fits in memory, stream to disk and add some mechansims to browse through history data by reading selected portions back.
    LabVIEW Champion . Do more with less code and in less time .

  • Dynamic screen size in J2ME

    Hi,
    How to get dynamic screen location for all devices..........
    Without changing coordinates from source code it will suit for all devices(Nokia, Samsung, Motorola).......... How to get this...
    Help me pls............

    Use code like this:
    public class start extends Canvas {
    public static int scrW;
    public static int scrH;
    public start() {
    setFullScreenMode(true);
    scrW = getWidth();
    scrH = getHeight();
    }

  • Exporting DV/HD files from iMovie to FCE-different sizes in canvas?

    Hi!
    Desperately need your help. I have a problem with moving my files from iMovie to FCE to edit. Pre cut in iMovie from both DV and HD files (canon 5D) and moving the project to FCE through XML. When in FCE the files line up with different sizes, the old DV files small, 1/3 of the canvas, the HD files perfect.
    Are there any settings which can be changed to fix this?
    Another problem I have is when exporting to QT the quality simply is not the same as when I export from iMovie and play on 50" plasma. Why? I have tried all options available.
    Hope someone out there has some experience and advise.
    Kind regards
    Olafur

    When in FCE the files line up with different sizes, the old DV files small, 1/3 of the canvas, the HD files perfect.
    I assume your Sequence settings are for HD which would be why the SD files are so small in comparison.
    -DH

  • Decrease dynamic disk size through VMM 2012 R2

    Hi,
    Is it not possible to decrease a dynamic disk max size through VMM?
    Do you really have to use the Hyper-V Manager?
    Med venlig hilsen / Best regards
    Kenny Klausen

    Just had the same issue, although related to migrating storage for a VM and managed to fix it...
    Did quite a few modifications in SCVMM, but the key things that seemed to get this working was that I made sure my VMs were connected to the right virtual network and also that they had a VLAN enabled.
    This was done by right-clicking the VM in SCVMM, selecting 'Properties', then 'Hardware Configuration', then select the Network Adapter - 
    Make sure the "Connected to a VM Network" has the right (for your setup) VM network selected, then check the "Enable VLAN" checkbox just below that and select a VLAN ID from the drop-down list.  I only had one VLAN configured on
    my VM Network so the selection was easy.
    Once I did this the 26857 error went away and I could migrate storage.
    Hope this helps !

  • Modify size of canvas?

    I'm having a problem figuring out how to manipulate the size of the canvas. For example, I have an object placed within my canvas 3d. I start to zoom out, at a certain point, there is a barrier where it will seem to dissapear behind a black curtain, which seems to be the size of the canvas. How can I make this larger so my objects will always be rendered onscreen?

    Yup, that was it...Didn't know exactly to look for.
    Just one another thing, instead of me looking for hours for the right function, how do I set the viewpoint within the canvas?

  • Re size multiple  canvas to a fixed size

    Hi,
    I have Around 1000 picture to Resize them to a fized size of 900x1000 pixels.
    All images are of different sixes and proportions.
    Anyone who can suggest an action to do that.
    Thanks

    I think you could record a two step action then batch that action to do all the images.
    Step 1) Menu Automate>Fit Image.  In the fit image dialog enter 900 in the width and 1000 in the height.  There will be recorded into the action step and when the action is player no dialog will be displayed the image will just be re-sized to fit within a 900x1000px area.
    Step 2)Menu Image>Canvas Size.  In the canvas size dialog leave the anchor point in the center un-check relative and enter 900PX width and 1000 PX high.  Again these will be recorded into the action step no dialog will be displayed when the step is played.   If the canvas is not 900px x 1000px because of the images aspect ratio is not 9:10  Canvas will be added to the two sides or the top and bottom to make the canvas size 900px x 1000px.
    You can batch the action with menu File>Automate>Batch or meny File>Scripts>Images Processor.

  • Resize 4000 images and make sure they have 3 sizes of canvas

    Hi,
    I require 4000 images in 3 different sizes.
    All of the images are different sizes but they need to be resized to be a specific size.
    I know that you can set a maximum width and height, but what i want is when they are resized, to be put onto a canvas that is my specific dimension.
    Anyone know how i can do this?
    Thanks!

    You can certainly use ACDSee Pro to do this job.  4000 images is a lot to process for any computer so it will take some time but ACDSee is up to the task.  You can constrain proportions or set them to be specific pixel dimensions.
    I do not know how to use the batch functions in Fireworks since I seldom use that program.  You can check to see if Adobe Bridge can do it but it might want to open Photoshop to do the batch processing which can take some time to do.

  • Window Size VS Canvas Size

    Hello / Asalam-o-Alekum
    I want to learn some about Windows Vs Canvas size, You all knows very well that in the organization people using different monitors/LCDS/ and Laptops, and in Laptops having different size of screen.
    Now I want that system sense/judge/pick the Monitors/LCD/Laptops size and shrink / expnad accordingly and canvas (simple canvas or Canvas with BITMAP file) as well.
    What will be the best solution in the regard.
    Can any one send me the example.
    waiting your response.

    we Aliku Al-Salam We Rahmatu Allah We Barakatu.. :)
    A window, can be imagined as an empty frame e.g as a pic's frame. The frame the ability to maximize,minimize,scroll, move, etc. and even close the window...
    This can be done either from the windows's property for the permentant changes of a form or programatically in such a case or a condition u specify using ...
    When-Window-Closed ,Set_window_property etc.
    A window must contain at least one canvas if no canvas exist u will see a gray empty frame; the window with no eyesss
    A canvas , can be consider the eyes for the window or the pic itself for a frame ; it's items must be visible & this canvas must be assigned to that window...
    Therefore, canvases and windows rely on each other to make themselves and other Forms objects ...
    A canvas-view is the background object on which you layout the interface items (text-items, check boxes, radio groups, and so on.)
    The size of the canvas and the size of its viewport are determined by properties.
    CANVAS VIEWPORTS (VIEWS)The terms “canvas view” and “viewport” are synonymous. The viewport refers to the area of the canvas that is visible to the user. What this means is that the canvas object itself is not always entirely visible; only the area defined by its viewport is visible.
    What will be the best solution in the regard1.is to use the same Vega Card Regarding hardware and off couse this is not practical to every one.
    but this will facilitate for the developper & the user the display of a form with the same configuration and screen resolution.
    2.For Web side pls use the same formsWeb.cfg , Width & Height 100% , same browsers the certified with the forms & Os u use.
    Hope this helps...
    Regards,
    Abdetu...

  • Dynamic view size

    Hi,
    is there a possibility in Web Dynpro to change the size of a view dynamically by the mouse?
    I have two views and it should be possible to shift the border between them like in normal window-applications (e.g. outlook).
    Or is there a possibility to develop a layout for the portal where this is possible?
    I would be happy if someone can give me an advise or a link.
    Thanks

    Hi Florian Fuchs,
    Refer the following thread,
    Dynamic View Generation
    Regards,
    P.Manivannan

  • Dynamic screen size in BDC

    Hi ppl,
    I have created a BDC program to upload certain data in a particular transaction which has a table control.
    This program will be called from devices having different screen sizes.
    In one of the devices, the table control of the transaction displays 3 lines, in another device, it displays 8 lines, while in the third device, it displays 12 lines.
    I want to make the Page Down option independent of the number of lines displayed.
    I am aware of CTU_PARAMS option, but, it is not working as desired.
    Please let me know if I am making a mistake.
        IF w_lncnt = 12.
          PERFORM : f0017_bdc_field  USING 'BDC_OKCODE'
                                           '=P+',
                    f0016_bdc_dynpro USING 'SAPML03T'
                                           '0105'.
          CLEAR: w_lncnt.
        ENDIF.
      MOVE: 'A' TO w_ctuparams-dismode,
            'S' TO w_ctuparams-updmode,
            'X' TO w_ctuparams-defsize.
      CALL TRANSACTION 'XYZ' USING t_bdcdata
                              OPTIONS FROM w_ctuparams
                              MESSAGES INTO t_messtab.
    Regards.

    Hi,
    here is an example of how to deal with this:
    http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm
    The key here is:
    DATA : FNAM(20) TYPE C,
           IDX      TYPE C.
      MOVE 1 TO IDX.
    LOOP AT IT_BANK WHERE LIFNR = IT_XK01-LIFNR.
      CONCATENATE 'LFBK-BANKS(' IDX ')' INTO FNAM.
      perform bdc_field       using FNAM
                                    IT_BANK-BANKS.
      IDX = IDX + 1.
    ENDLOOP.
    once you´ve assured that the number of lines in the tablecontol won´t change due to parameter DEF_SIZE, you just have to worry about the above code.
    Best regards.
    Edited by: Pablo Casamayor on Jun 23, 2010 11:42 AM

Maybe you are looking for

  • Cisco ASA5505 multiple public ip nat problem

    Hello, I've been having weird problem with static nat. First have to say that i've been searching answer for this and not yet found... I have three public IP:s from /24 network like 83.x.x.10, 83.x.x.25 and 83.x.x.41 all using netmask 255.255.255.0.

  • How do I get my calendar info pushed to my iphone?

    I would like my calendar info or evenets pushed to my phone without using a sync cable. I had the option on the phone checked for icloud but the items never push over so I just turned the icloud calendar switch off and just sync it manually. Also any

  • Error Loading Metadata while creating KPIs in SSAS

    Hi, i have created a cube for my local database. On opening the cube in the SSAS solution when i clicked on the calculations tab (and subsequently in the other tabs - KPI, Actions etc ) i get an error "error loading metadata: Either the user, DOMAIN\

  • SQL Server Linked Server Issues with MVC 5

    I have 2 linked servers Server A = MYOB  ( custom 32 it ODBC Driver )  Server B = SQL Server 64 Bit. They link fine using windows authentication - and I can run the following no problem in SQL Management tools ( as part of a stored proc ) .  DECLARE

  • How do i remove repeated titles on pages

    I just downloaded pages from the mac app store. I have 1 problem. It is that i write the title of my doc in the little square at the top, and it repeates itself on every page. how do i stop this?