How to load under vi in Panel at the same location using base LV 8.6

I have several screens to display on the button clicks so I want to load the sub VI Panel in the same place using the package base of LV 8.6.I could find solutions using Insert VI, but which is available in full development Package.Is it in any other way to do it.

Thank you it worked... but I have a question, I have attached two SCREWS get channel config is the VI I want to display in the Panel of sup, but scrollbars donot work

Tags: NI Software

Similar Questions

  • How to load and replace random swf in the same charger on stage?

    Hi... it's very simple, but for some reason any escapes me: using AS3 how a swf file can load another swf to replace itself in the charger still on the stage, while at the same time calling a function of randomization in the first frame of the main timeline, to randomize the next swf?

    At the end of each swf (called "koan_ # .swf"), it is the following old AS2 code... it has been used to choose randomly, and then play a SWF of koan table:

    _root.index ++

    If (_root.index > _root.koan.length - 1) {}

    _root.index = 0;

    _root. KOAN.shuffle ();

    }

    _root.koan_loader_mc.loadMovie (_root. KOAN [_root.index]);

    This code on the first frame of the main timeline loads a koan random swf file correctly, but after that the koan plays I'd like to load a new swf random koan.

    function shuffle(a:Array):Array {}

    var len:Number is. Length-1;

    for (var ivar:Number = len; ivar > = 0; ivar-) {}

    var p:Number = Math.floor (Math.random () *(ivar+1));

    var t = a [ivar];

    a [ivar] = a [p];

    a [p] = t;

    }

    return a;

    };

    var: index: uint = 0;

    var koan_loader:Loader = new Loader();

    koan var: Array = ['swfs/koans/koan_1.swf","swfs/koans/koan_2.swf', 'swfs/koans/koan_3.swf', 'swfs/koans/koan_4.swf', 'swfs/koans/koan_5.swf', 'swfs/koans/koan_6.swf', 'swfs/koans/koan_7.swf', 'swfs/koans/koan_8.swf', 'swfs/koans/koan_9.swf', 'swfs/koans/koan_10.swf', 'swfs/koans/koan_11.swf', 'swfs/koans/koan_12.swf'];

    KOAN = shuffle (koan);

    koan_loader. Load (new URLRequest (koan [index]));

    MovieClip (this).koan_loader_mc.addChild (koan_loader);

    Thank you very much.  I tried several variations of updated AS2 code but am at my wits end.

    -Very well, bloody forums join the file for some reason, so here is the code:

    Copy and paste this code into a text file and save it as InterfaceEvent.as

    package {}

    import flash.events.Event;

    SerializableAttribute public class InterfaceEvent extends Event {}

    public static const = "koanFinished" KOAN_FINISHED:String

    public void InterfaceEvent (type: String, bubbles: Boolean = false, cancelable: Boolean = false, int index = - 1, item: Object = null) {}

    Super (type, bubbles, cancelable);

    This.index = index;

    This.Item = item;

    }

    public var int index = - 1;

    public var point: Object = null;

    override public function clone (): Event {}

    return new InterfaceEvent (this.type, this.bubbles, this.cancelable, this.index, this.item);

    }

    }

    }

  • Copy-paste an object of front panel to the same xy location

    Hello

    Just a practical question, but I would need very often this kind of functionality:

    How can I copy - paste an object of front panel to the same location? Lets consider the I have a TAB container, and on the first page, I have a chart. I would like to make a graph even on the second page tab, but at the same XY location compared to the TAB container.

    Thank you very much!

    HM, I just realized, there is an option 'double page' for the TAB containers and it's magic for me, creates the exact copy of all the objects

  • How to load a multiple column table in the coherence of caches?

    How to load a multiple column table in the coherence of caches?
    I want to load a multi-column (about 20 columns) table in cache coherence. How to change the following code (spatially how to change the SQL SELECT statement)?
    Is the following select statement enough: Select the key, the value of EMPLOYEES ?
    public static void bulkLoad(NamedCache cache, Connection conn)
        {
        Statement s;
        ResultSet rs;
        
        try
            {
            s = conn.createStatement();
            rs = s.executeQuery("select key, value from table");
            while (rs.next())
                {
                Integer key   = new Integer(rs.getInt(1));
                String  value = rs.getString(2);
                cache.put(key, value);
                }
            ...
            }
        catch (SQLException e)
            {...}
        }

    First of all, you need a class to hold your 20 fields:

    public class Data {
    
        private String field1;
        private String field2;
        private String field3;
        private String field4;
        private String field5;
        private String field6;
        private String field7;
        private String field8;
        private String field9;
        private String field10;
        private String field11;
        private String field12;
        private String field13;
        private String field14;
        private String field15;
        private String field16;
        private String field17;
        private String field18;
        private String field19;
        private String field20;
    
        public Data() {
        }
    
        public String getField1() {
            return field1;
        }
    
        public void setField1(String field1) {
            this.field1 = field1;
        }
    
        public String getField2() {
            return field2;
        }
    
        public void setField2(String field2) {
            this.field2 = field2;
        }
    
        public String getField3() {
            return field3;
        }
    
        public void setField3(String field3) {
            this.field3 = field3;
        }
    
        public String getField4() {
            return field4;
        }
    
        public void setField4(String field4) {
            this.field4 = field4;
        }
    
        public String getField5() {
            return field5;
        }
    
        public void setField5(String field5) {
            this.field5 = field5;
        }
    
        public String getField6() {
            return field6;
        }
    
        public void setField6(String field6) {
            this.field6 = field6;
        }
    
        public String getField7() {
            return field7;
        }
    
        public void setField7(String field7) {
            this.field7 = field7;
        }
    
        public String getField8() {
            return field8;
        }
    
        public void setField8(String field8) {
            this.field8 = field8;
        }
    
        public String getField9() {
            return field9;
        }
    
        public void setField9(String field9) {
            this.field9 = field9;
        }
    
        public String getField10() {
            return field10;
        }
    
        public void setField10(String field10) {
            this.field10 = field10;
        }
    
        public String getField11() {
            return field11;
        }
    
        public void setField11(String field11) {
            this.field11 = field11;
        }
    
        public String getField12() {
            return field12;
        }
    
        public void setField12(String field12) {
            this.field12 = field12;
        }
    
        public String getField13() {
            return field13;
        }
    
        public void setField13(String field13) {
            this.field13 = field13;
        }
    
        public String getField14() {
            return field14;
        }
    
        public void setField14(String field14) {
            this.field14 = field14;
        }
    
        public String getField15() {
            return field15;
        }
    
        public void setField15(String field15) {
            this.field15 = field15;
        }
    
        public String getField16() {
            return field16;
        }
    
        public void setField16(String field16) {
            this.field16 = field16;
        }
    
        public String getField17() {
            return field17;
        }
    
        public void setField17(String field17) {
            this.field17 = field17;
        }
    
        public String getField18() {
            return field18;
        }
    
        public void setField18(String field18) {
            this.field18 = field18;
        }
    
        public String getField19() {
            return field19;
        }
    
        public void setField19(String field19) {
            this.field19 = field19;
        }
    
        public String getField20() {
            return field20;
        }
    
        public void setField20(String field20) {
            this.field20 = field20;
        }
    }
    

    Then you can use it to store data in you original code

    public static void bulkLoad(NamedCache cache, Connection conn)
        {
        Statement s;
        ResultSet rs;
    
        try
            {
            s = conn.createStatement();
            String sql = "select key, value, value2, " +
                    "value3, value4, value5, value6, " +
                    "value7, value8, value9, value10 " +
                    "value11, value12, value13, value14, " +
                    "value15, value16, value17, value18, " +
                    "value19, value120 from table";
    
            rs = s.executeQuery(sql);
            while (rs.next())
                {
                Integer key   = new Integer(rs.getInt(1));
                Data data = new Data();
                data.setField1(rs.getString(2));
                data.setField2(rs.getString(3));
                data.setField3(rs.getString(4));
                data.setField4(rs.getString(5));
                data.setField5(rs.getString(6));
                data.setField6(rs.getString(7));
                data.setField7(rs.getString(8));
                data.setField8(rs.getString(9));
                data.setField9(rs.getString(10));
                data.setField10(rs.getString(11));
                data.setField11(rs.getString(12));
                data.setField12(rs.getString(13));
                data.setField13(rs.getString(14));
                data.setField14(rs.getString(15));
                data.setField15(rs.getString(16));
                data.setField16(rs.getString(17));
                data.setField17(rs.getString(18));
                data.setField18(rs.getString(19));
                data.setField19(rs.getString(20));
                data.setField20(rs.getString(21));
                cache.put(key, data);
                }
            ...
            }
        catch (SQLException e)
            {...}
        }    
    

    Of course your data object would need the appropriate field names and you will have no channels for all types. It must also implement equals and hashCode and ideally PortableObject.

    JK

  • RH10. How to make home button on the toolbar and of home in the box "breadcrumbs" link to go to the same location

    (I don't know what the problem is with the editor of these days. Only choice is HTML with tags or this editor who suddenly decided to put my text in italics and not let me remove it! He already let me create line breaks. )

    I use: RoboHelp WebHelp Pro Single Source Layouts, 10 (albeit without using RoboHelp Server).

    I have five SSL, each with their own unique contents. The table of contents for each licensed module includes basic help topics.

    • Basic Help
    • Help for module 1 licensed
    • Help for module 2 license
    • Help for module 3 licensed
    • Help for module 4 licensed

    The default theme using base is "Introduction.htm. The default theme of each licensed module is the theme of introduction for this add-on.

    In the basis of the help by clicking on the button Home in the toolbar opens "Introduction.htm. By clicking on the Home link in the region of breadcrumbs, for example ""Homepage > Management Data Sources > creating a database ", also opens 'Introduction.htm'."

    In a license module, click on the home button in the toolbar opens "Introduction.htm. BUT, by clicking on the Home link in the region of breadcrumbs, for example "Homepage > analysis of the loss, opens the introductory section of the module under license." Our QA group filed a bug against this behavior. They feel that by clicking on the Home button and clicking on the link home takes you to the same place.

    All modules use a common window with a display two-pronged and all the WebHelp Pro buttons, including "home (skin: help NGP)" selected.

    They also use a common skin. The home button properties are: name of the item and the text = "Home". Links of "Introduction.htm" button, with a dependence on "Release\Core\Introduction.htm".

    Is there an easy way to achieve the results expected by the AQ, where clicking on host always opens "Introduction.htm", while authorized opening assistance always opens the introductory topic for the module? DISCLAIMER: I do not know how the script, if it is a possible solution.

    Thank you.


    Carol

    LOL, "all this said, the WebHelp Pro has worked quite well without HR server."

    And yet, here you ask about solving a problem, right?

    I think you should study serously ordinary passage to WebHelp. So much more than you report problems with the behavior of the toolbar buttons and the behaviour of the breadcrumbs.

    The reason is that RoboHelp Server maintains some of this aspect when you publish the content out there. So I'm not surprised to see point out you inconsistent behavior with different "modules". I guess it's an installation "merged"?

    See you soon... Rick

  • iPhone 7: how to charge and listen to music at the same time...

    The new iPhone is great! But a quick question that I can't find the answer to... In the car, I use the TomTom app and listen to the music on my phone. Because it must be reloaded when I use TomTom, I have a cable for music and one for the load. The new iPhone means that I can't load and listen to music at the same time? Or will there be some accessory available?

    Thank you!

    You can read what is known on the Apple site.

  • How can I have 2 email accounts open at the same time using the apple mail icon?

    How to open 2 e-mail accounts at the same time?

    Hello carroll12,

    Thank you for using communities of Apple Support.

    I see that you do not want to open two e-mail accounts at the same time using the Mail application. I understand perfectly. I have multiple e-mail accounts set up in my Mail application. I'm happy to help you with this.

    You can have more than one e-mail account set up in the Mail application. The first time you open Mail, it may prompt you to add an e-mail account (if you have not already done). Select an account type, and then enter your account information. To add another account, choose Mail > add an account, select an account type, and then enter your account information. Make sure that the Mail check box is selected for the account.

    If you have already both set in place, and I just want to be able to view both on the screen at the same time, open Mail, and then click file at the top.  From there, select the option for the new window of the observer.  This will open a new window where you can see each of the individual mailboxes on the same screen.

    Have an amazing day!

  • Hi whant to update the changed value to dishes of the same variable used in the entry. How to do thanks in advance

    Hi, I want to update the value out put of the same variable used in the entry. How to do thanks in advance

    ya I got it. using the property node (and if you select value) we can do. Thans for answer

  • How can I register several OCX files at the same time

    How can I register several OCX files at the same time. OCX depending on the application files are stored in a network location, IE. R:\HR\whatever\whatever\*. OCX instead of manually record each ocx file, I would be with a simple batch file or an automated script. Anyone have any good ideas?

    Hi James,

    The Microsoft Answers community focuses on the context of use. Please join the professional community of COMPUTING in following the link MSDN forum

    http://social.msdn.Microsoft.com/forums/en-us/categories

  • Failed to load XP on the same computer using the product key on the case of the CPU.

    I uninstalled XP and tried to load Window 7 s. had driver problems. Let down. Now I can't reinstall XP on the same computer using the product key on the case. I get a message "invalid Key". It's a Dell PC 6 years, if that matters.

    As I said, you will need the manufacturer's recovery disk, or disk OEM System Builder.

    Do you have which drive tried to use?

    You may be able to borrow a disk OEMSB from a friend - or you may be able to order the Dell recovery disks (they are cheap).

  • How to set a user account to have the same settings as the administrator account

    How to configure a user account to have the same settings as the administrator account. using windows xp pro with service pack 3

    Set the "parameters of same.

    If you want that the user has administrator privileges, then all you need to do is to add the user to the group "Administrators".  To do this, right-click on 'My computer', select 'Manage' and open the "local users and groups" section.  Click on 'Groups', double click on "Administrators" and add the user to the administrator group.

    If you set 'settings' and things like wallpaper and other preferences, there isn't a way to do that easily other than to simply set these parameters.

    Hope this helps,
    JW

  • How can I keep my desktop icons in the same place that I left when I restart my computer?

    Icon office locations

    I have the Windows 7 operating system.  How can I keep my desktop icons in the same place that I left when I restart my computer.  Now the icons automatically all go to the left side of my desk when I restart.

    Hello

    References to Vista also apply to Windows 7.

    Difficulty for the desktop icons set in not getting saved after restarting Windows
    http://www.Winhelponline.com/blog/fix-desktop-icons-layout-not-saved-restart/

    -------

    Save and restore the desktop icon layout in Windows NT/2000/XP/Vista (Win 7) - free
    http://www.Winhelponline.com/blog/save-and-restore-desktop-icon-layout/

    Save and restore the desktop icon Layout in Windows Vista (Win 7) - free
    http://www.howtogeek.com/HOWTO/Windows-Vista/save-and-restore-desktop-icon-layout-in-Windows-Vista/

    TIP : right click on desktop - DISPLAY - uncheck AutoArrange and snap to grid
    When you want to restore the icons or the restore will not work. You can
    Recheck those needed later and apply the attribute Align to grid before the
    Auto arrange.

    -------------

    Office catering - free
    http://www.MIDIOX.com/

    Info
    http://www.MIDIOX.com/HTML/desktop.htm

    ------------

    Lock the post Office icons and disable right click
    http://www.techmynd.com/lock-desktop-icons-position-and-disable-right-click/

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • How to get a ledger_id before release of the report by using FND_PROFILE. Value

    Hi all, I am developing a customized using 10 g generator report. How can I get Ledger_id before release of the report by using FND_PROFILE. VALUE(). I tried with this V_LEDGER_ID: = FND_PROFILE. VALUE('GL_SET_OF_BKS_ID'). But it does not work. Please let me know how to get the legder_id using FND_PROFILE. VALUE before release of the report. Thanks, I'm glad.

    What version of oracle apps?

    have you used the user exist in your report?

    Try using the outputs of the user and P_CONC_REQUEST_ID

  • Mixture of Photoshop mobile app. How can you save an edited photo in the same file as the original?

    Mixture of Photoshop mobile app. How can you save an edited photo in the same file as the original?

    Hey there Mopi2!

    Currently, there is no way to save your new image instead of the original image. For now, you need to manually delete the original. It is however a great request! Please share with the team by typing "give us feedback" in the app menu (tap on the app icon in the upper left corner of the screen while inside the app).

    Let me know if that helps!

    -Kathleen

  • I can switch between the code sheet and css html, but I would like to see them both at the same time as well as the design window. Right now and can see rather the design and code html or design and css. How can I arrange to see all at the same time, of

    Hello

    My name is Ellie and I am new to Dreamweaver.

    I can switch between the code sheet and css html, but I would like to see them both at the same time as well as the design window. Right now and can see rather the design and code html or design and css. How can I arrange to see everything at the same time, design, HTML and CSS?

    Thank you

    It ends up something like that...

Maybe you are looking for