Can i create a large number of identical tabs?

I have searched around and found nothing on the topic.. what i am looking at here is this.
I have currently set up two tabs that are identical, each representing a component on a device and the component is selected when the user clicks on the tab.
For example, if i switch to tab two, i select component two.
Now these tabs are identical, same controls same indicators and so on.. what i want to know is if it is possible to make it so that say.. if i tell it i have 5 components, it would show 5 identical tabs. if i told it it had 20 components it would bring up 20 and so on. At the moment i am looking at having to create each tab one by one and then hiding them..
Thanks for your time and any help at all is greatly appreciated

bracker wrote:
altenbach--this problem could be phrased a little more generally though:  some, but not all types of controls could appear on each tab, while other controls are unique to particular tabs.  I've encountered exactly this situation, and I don't have a good way to duplicate the exact location of the common controls on each tab.  Can "copy and paste" be done "in place" somehow?
Using altenbach's approach would be best. If you have a handful of specific controls but most are common you can control this by showing/hiding control. When the user selects the type of device you could show/hide the controls which are not common to all. Using this approach you could place controls on top of each other as long as only one would be visible at a time. This saves on diagram space and gives you a clean interface. Internally you use an array of clusters. If you may have different clusters you can decide if the differences are significant enough to warrant using different cluster definitions or simply having a few parameters that do not apply to all devices included in a single cluster definition. The controls on the front panel itself do not need to be in a cluster since they are only there for the UI. This gives you a bit more freedom in laying out the front panel. Anything that uses typedefs (ENUMs for example) should share the same typedef though.
If you feel very ambitious and think you may reuse this control in several applications you could implement this as an X-Control.
Mark Yedinak
"Does anyone know where the love of God goes when the waves turn the minutes to hours?"
Wreck of the Edmund Fitzgerald - Gordon Lightfoot

Similar Messages

  • Create a large number of purchase order in ME21N

    Hello,
    Is there a CATT or LSMW transaction or a program to create a large number of purchase orders with the positions?
    Thanks in advice
    Fany

    you can LSMW with direct input method
    Object - 0085, method - 0001
    venkat

  • If we upgrade to a Professional Edition DPS license can we create an unlimited number of Single edition apps for iPad, iPhone and Android devices?

    I work for a organisation based in Sydney and we have a team license for creative cloud (single edition).
    We have been producing single folio apps for the iPad and want to continue this through 2015. 
    At the moment we can only create apps for the iPad platform.  If we upgrade to a Professional Edition DPS license can we create an unlimited number of Single edition apps for iPad, iPhone and Android devices?
    We do not need multi-folio apps as we are not a publishing company.  

    Thanks Neil
    I sent an email yesterday and am awaiting a reply.  Here is my email for reference.
    Matt
    I work for a large organisation based in Sydney and we have a team license for creative cloud (single edition).
    We have been producing single folio apps for the iPad through Indesign and the App builder.  We now want to produce apps for iPhone, iPad and Android devices.  
    If we upgrade to a Professional Edition DPS license can we create an unlimited number of apps for iPad, iPhone and Android devices?
    We are not a publishing company so we will produce a small number of the apps.  If you could get back to me with a solution and approx price that would be great.
    Thanks for your time
    Regards,
    Matt

  • How can I move a large number of pics from icloud Photos Beta to a PC without having to select each photo?

    How can I move a large number of pics from icloud Photos Beta to a PC without having to select each photo?

    Hi,
    can you please explain why the solution from steve is not the right solution for you.
    regards
    Peter

  • How can I trash a large number of Emails quickly from my iPod touch rather than using the one-at-a-time Edit method?

    How can I trash a large number of Emails quickly from my iPod touch rather than using the one-at-a-time Edit method?

    Once you tap on edit, you can select multiple emails, the tap archive.

  • Can I create a dynamic number of inputs during runtime?

    Can I create a dynamic number of inputs during runtime?
    Oracle 11g
    Application Express 4.0.2.00.06
    Here is my problem:
    We have a table that holds metadata about files (hardcopy or softcopy files).
    We expect we may need more columns in the table at some point and don't want to modify the table or the application.
    So in order to do this I would like to create:
    A table called TBL_FILE with the columns:
    TBL_FILE_ID               NUMBER                (This will be the primary key)
    TBL_FILE_NAME          VARCHAR2(1000) (This will be the name of the file)
    A second table will be called TBL_FILE_META with the columns:
    TBL_META_ID               NUMBER               (This will be the primary key)
    TBL_FILE_ID               NUMBER                (This will be the forign key to the file table)
    TBL_META_COLUMN     VARCHAR2(30)     (This is what the column name would be if it existed in TBL_FILE)
    TBL_META_VALUE          VARCHAR2(1000) (This is the value that record and the 'would be' column)
    So a person can have as much meta data on the file with out having to add columns to the table.
    The problem is how can I allow users to add as much data as they like with out having to re develop the page.
    Other things to note is that we would like this to be on a single page.
    I know how to add we can create multi-row inserts by using a SQL Query (updateable report),
    however the TBL_META_VALUE column in the TBL_FILE_META will sometimes be a select list and other times a text box or number field.
    So I don't see now a SQL Query (updateable report) would work for this and I can't create an array of page items at run time can I?
    Any idea's how I could accomplish this? Is there a better way of doing this?
    Also is there a term or a name for what I am doing by creating these 'virtual' columns in another table?
    I found this method when looking at Oracles Workflow tables.

    Welcome to the Oracle Forums !
    >
    Can I create a dynamic number of inputs during runtime?
    Oracle 11g
    Application Express 4.0.2.00.06
    Here is my problem:
    We have a table that holds metadata about files (hardcopy or softcopy files).
    We expect we may need more columns in the table at some point and don't want to modify the table or the application.
    So in order to do this I would like to create:
    A table called TBL_FILE with the columns:
    TBL_FILE_ID NUMBER (This will be the primary key)
    TBL_FILE_NAME VARCHAR2(1000) (This will be the name of the file)
    A second table will be called TBL_FILE_META with the columns:
    TBL_META_ID NUMBER (This will be the primary key)
    TBL_FILE_ID NUMBER (This will be the forign key to the file table)
    TBL_META_COLUMN VARCHAR2(30) (This is what the column name would be if it existed in TBL_FILE)
    TBL_META_VALUE VARCHAR2(1000) (This is the value that record and the 'would be' column)
    So a person can have as much meta data on the file with out having to add columns to the table.
    The problem is how can I allow users to add as much data as they like with out having to re develop the page.
    >
    Creating Page Items dynamically is not available. You will have to create excess items and hide/show , etc. But you cannot change the Item Type. All in all, too many limitations in this approach.
    >
    Other things to note is that we would like this to be on a single page.
    >
    The 100 item limit will hit you if you go with extra item on page. With Tabular Form that should not be a limitation, unless you are exceeding the 50 item limit of APEX_APPLICATION.G_Fnn items, and the 60 column limitation of Report region with "Use Generic Column Names (parse query at runtime only)" of Dynamic region.
    >
    I know how to add we can create multi-row inserts by using a SQL Query (updateable report),
    however the TBL_META_VALUE column in the TBL_FILE_META will sometimes be a select list and other times a text box or number field.
    >
    If the type if item is variable it only means you need a way to store the item type. Meta Data of the Meta Data.
    >
    So I don't see now a SQL Query (updateable report) would work for this and I can't create an array of page items at run time can I?
    >
    Yes, you can do it. Updatable report/ Tabular Form query can be constructed from the Meta Data using PL/SQL Function Returning SQL Query . It will be a bit of coding in PL/SQL where you use the Meta Data and the Meta Data of the Meta Data to piece together your SELECT with the right APEX_ITEMs. It might have a performance penalty associated with it, but will not be a serious degradation.
    >
    Any idea's how I could accomplish this? Is there a better way of doing this?
    Also is there a term or a name for what I am doing by creating these 'virtual' columns in another table?
    I found this method when looking at Oracles Workflow tables.
    >
    I guess that is just a good TNF. It is the Master-Detail Design Pattern, that sound more modern ? ;)
    Regards,

  • How can I create a second sheet within a tab?

    How can I create a second sheet within a tab? I have tried to add another table but it shows up on top of the existing table. I want to have two sheets or tables within one tab so I can further sort and categorize within a section. Is this possible? Thanks for all the help!
    -Bridget Altman
    Administrative Associate
    Discover Abroad at the University of Georgia

    You can insert a new table on the View Responses Tab with
    Insert > Table
    You can also insert a new sheet with a new table with
    Insert > Sheet
    You can drag and drop the table if it does overlap with another table. Just select the table you want to move and drag the top-left corner of the table to move it.
    Hope this helps
    Gen

  • How can I delete a large number of messages from my iCloud mailbox in bulk mode?

    I decided that I have a large number of e-mail messages in my iCloud mailbox that I do not need anymore and I would like to delete these messages in a single - simple move. How can I do it (Gmail offers a nice way to do this but I cannot find anything similar in iCloud...)?

    Archive the contacts you have in Address book, then delete them, they will be removed from iCloud as well. Restore the archive

  • How can I create projects larger than 7GB?

    I want to creat a project and it will be very large... over 10GB. I know that because I finnished only two thirds of it and it already 7GB size (I get the warnning message all the time)
    Is there any way to create a larger projects? I dont want to burn it on a disc... I just want to save it as an image file, and play it from there...
    If there's a way to make my project smaller so it can fit a Dual-Layer disc will also be a bless...
    Thank you all!!
    Naor

    Yes. It is not the size in GB of your project. I have had many projects that were between 60 and 100 GB, but under the time lime.
    It is theTIME limitation that iDVD is complaining about to you. A single-layer DVD can hold 120 minutes of content, including menus and submenus. A double-layer DVD can hold twice that much, 240 minutes total. Your project exceeds the capacity of even a double-layer DVD because it is too long to burn on one DVD.
    To burn DVDs with that many minutes, you will need to split your project and burn it to two DVDs, so that each part is not longer than 240 minutes total time. This is the same for creating disk image files. They cannot exceed the total time limits.
    I have seen reports of supercompressing data using Toast, so that you can fit more content onto a disk, but I have not used it this way, and I think you are probably trying to put too much onto one disk even for Toast. Maybe others have done this and can give your their experiences with Toast's limitations.

  • Help, how can I create the minor number if

    I know my device path is c0t3d2s2. eg. how can create a minor number which will be used as an input to makedevice() based upon the above info. Thanks in advance.

    Hi!
    The primery thing under Solaris is /device tree. The entries in this
    directory, so called device special files or minor nodes, are created when drivers
    attached/loaded, usually in attach routine.
    The device special files are created under /devices with a help of
    ddi_create_minor_node. There is a way to create compatibility links
    under /dev like /dev/dsk/c0t3d2s2. How to do it?
    Each minor node has so called "node type" (see:
    ddi_create_minor_node(9F), /usr/include/sys/sunddi.h).
    Solaris has programs family (devfsadm in S8) to make links into /dev,
    according "node type"
    /usr/sbin/disks - makes links for "node type" = DDI_NT_BLOCK
    /usr/sbin/tapes - makes links for "node type" = DDI_NT_TAPE
    /usr/sbin/ports - makes links for "node type" = DDI_NT_SERIAL
    /usr/sbin/audlinks - for "node type" = DDI_NT_AUDIO
    /usr/sbin/devlinks - for "node type" = DDI_PSEUDO and some other types.
    These programs are called each time the system is reconfiguration-
    booted. They only know predefined "node type" and have some internal
    rools, expressed by regular expressions, e.g. for "audlinks":
    $ strings /usr/lib/devfsadm/linkmod/SUNW_audio_link.so
    ((nt)|(te)|(aux))\,((0)|(0ctl)|(d)|(b1)|(b2)|(mgt)|(dtrace))
    sound,
    sound/([0-9]+)
    isdn/([0-9]+)
    sound,
    sound/
    isdn/
    mgt,mgt
    isdn/
    /mgt
    audio
    ddi_audio
    audio
    ^sound/[0-9]+(ctl)?$
    audio
    ^isdn/[0-9]+/mgt$
    audio
    ^isdn/[0-9]+/aux/0(ctl)?$
    audio
    ^isdn/[0-9]+/(nt)|(te)/((dtrace)|(mgt)|(b1)|(b2)|(d))$
    audio
    ^audio(ctl)?$
    SUNW_audio_link: minor_init: regular expression bad: '%s'
    ((nt)|(te)|(aux))\,((0)|(0ctl)|(d)|(b1)|(b2)|(mgt)|(dtrace))
    audio
    sound/%d
    audioctl
    sound/%dctl
    SUNW_audio_link: audio_process: can't find match for'%s'
    When you buld /dev subtree for your driver you must either to follow
    they demands or create links by hand (by script).
    You can also set the access rights for the device special files from
    within the driver.
    You can do it with a help of "add_drv". See -m key. Information from
    "add_drv -m" fall into "/etc/minor_perm" and will use each time when
    minor node will create.
    Vitaly Filatov
    Moscow, Russia
    [email protected]

  • Can't create Ramdisk larger tham 16M

    Hi Archers,
    I am trying to create a ramdisk but can't create ramdisk higher than 16MB. If I create a ramdisk smaller tham 16MB, everything is ok, but if I create higher, I got the following error:
    mkfs -t ext4 /dev/ramcache 102400
    mke2fs 1.41.14 (22-Dec-2010)
    mkfs.ext4: Filesystem larger than apparent device size.
    Proceed anyway? (y,n) y
    Filesystem label=
    OS type: Linux
    Block size=1024 (log=0)
    Fragment size=1024 (log=0)
    Stride=0 blocks, Stripe width=0 blocks
    25688 inodes, 102400 blocks
    5120 blocks (5.00%) reserved for the super user
    First data block=1
    Maximum filesystem blocks=67371008
    13 block groups
    8192 blocks per group, 8192 fragments per group
    1976 inodes per group
    Superblock backups stored on blocks:
        8193, 24577, 40961, 57345, 73729
    mkfs.ext4: Invalid argument while zeroing block 102336 at end of filesystem
    Writing inode tables: done                           
    Creating journal (4096 blocks): mkfs.ext4: Invalid argument
        while trying to create journal
    I have even re-compiled the kernel with followings but get the same problem
    CONFIG_BLK_DEV_RAM=m
    CONFIG_BLK_DEV_RAM_COUNT=16
    CONFIG_BLK_DEV_RAM_SIZE=524288
    Any Solution for this?
    Cheers

    fukawi2 wrote:
    I've never made a ramdisk that way, I always make an entry in fstab with the size:
    tmpfs /tmp tmpfs noatime,nodev,size=1g,mode=1777 0 0
    Note the size=1g option
    I would like to create a Ramdis such as /dev/ram0 so that I can mount and unmount it without losing my data. with tmpfs, after unmount, all my data will be erased.
    Cheers

  • Can Pages create a large banner?

    I'm trying to create a large banner (2 or 2.5 ft. x 5 or 6 ft) by "tiling" multiple pages together to create one large image of text. Can Pages do this, and if so how?

    Can Pages do this, and if so how?
    Pages > File > Page Setup
    Settings > Page Attributes
    Format for > Any printer
    Page Size > Custom
    You are able to define a media geometry that is independent of the media geometry in your presently registered printer.
    If you define a media geometry that is larger than the media geometry in your presently registered printer, the system lets you scale down the media geometry.
    The media geometry scales as a whole - you can specify the scaling manually or you can let the system compute the scaling (fit once, fit twice - called two up, fit four times - called four up, etc.).
    You cannot set multiple origins within the media geometry and manually tile the larger media geometry onto the smaller media geometry supported in your presently registered printer.
    This is a limitation of Apple's implementation and not of the underlying printing model.
    This is before breakfast coffee, hope my random access memory is working.
    /hh

  • Can I create a skype number for some else?

    I was creating a skype number, then realized that it might be attached to my skype account.  Is that true, or is the skype number independent of my skype account, and doesn't have to be create on my friend's skype account.

    Hi, whoisgarrick, and welcome to the Community,
    Your hunch is correct: the Skype Number will be attached to your Skype account.   If your friend desires a Skype Number, they should sign on to their account so the number is affiliated with their Skype account and payment method.
    Kind regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • How can I format a large number to have comma separators?

    I have numbers that are very large, i.e., in the billions. I want to format the display to show comma separators.
    For example:
    8000000000 => 8,000,000,000
    Is there an easy way to do this?

    Robert,
    There is no way (to my knowledge) to include comma separators in a numeric control or indicator in LabVIEW. If you want commas, you will need to use a string. I have attached an example VI to this post that demonstrates how I would include comma separators in a large number string. There might be an easier way, but this was the first thing that came to mind.
    I hope this helps. Good luck with your application, and have a pleasant day.
    Sincerely,
    Darren N.
    NI Applications Engineer
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman
    Attachments:
    commas.vi ‏24 KB

  • How can I Create a exe file were a tab control on it work`s

    I have a VI with many controls and indicators,these are spread on a tab control.This tab control works with out any problems but if i create a exe file then the tab control is fixed. How can I create a exe file so that the tab control on it work´s ?"
    Attachments:
    project7.1.jpg ‏129 KB

    Make the tab control a control and not an indicator. If you want to write
    to it you need to create a local variable.
    "Carlos-R." wrote in message
    news:[email protected]..
    I have a VI with many controls and indicators,these are spread on a
    tab control.This tab control works with out any problems but if i
    create a exe file then the tab control is fixed. How can I create a
    exe file so that the tab control on it work´s ?"

Maybe you are looking for

  • Site error only on my G5 iMac

    I previously posted this question and am still missing something. I'm reposting in hopes someone can further explain to me what the problem is. This is the original topic: http://discussions.apple.com/thread.jspa?threadID=771703&tstart=150 I created

  • Condition records for Material

    Hi, We have made a systems like  Package material  means  We have one material with item category ZBOM  which is the main material and for this material we have made BOM with different line items  when we enter package material in VA01  system automa

  • Customozing Oracle Discoverer Security

    Hi, Please help me in following scenario. I am having security service as web service which maintain all tokens about users. When any user from a system try to connect to disoverer it should use this token id and send to discoverer. And the Discovere

  • How do I transfer all my files,programs, etc from my 10.5.8 OS X IMAC to my new Mavericks IMac?

    I am looking to migrate all my files, photos, Word & Excel files over to my new IMac from a older 10.5.8 OS X IMac.  The Migration Assistant does not work. Can I also get my MS Office programs to move over?   I am NOT tech savvy in the least.   Is th

  • Where Used List for Master Data Entries

    Hi folks, I am looking for a FM, method, etc. that gives me a list, that shows, where a certain master data entry of an InfoObject is used. The BW system makes this check implicitly, when trying to delete master data, but I couldn't get behind the lo