Scroll the two indicators in table at the same time

How to scroll the scroll bar of the two table flag simultaneously?

Thanks in advance

Try this minor mod to allow either scroll to be active - and like NIquist said-controller to the bottom of the loop

Tags: NI Software

Similar Questions

  • Insertion of records in two different tables at the same time?

    Hello everyone, I have question about inserting records in two different tables at the same time, I'm looking for is by the way a unique id, which is created in the first statement insert to the second insert statement. Example of this problem:

    < cfquery name = "addRecords1" datasource = 'test' >

    Insert Into Table1 (name, Date, age)

    Values (< cfqueryparam cfsqltype = "cf_sql_char" value = "#arguments.) "Name # ' >.

    < cfqueryparam cfsqltype = 'cf_sql_date' value = '#arguments. "Date # ' >.

    < cfqueryparam cfsqltype = "cf_sql_int" value = "#arguments. Age #"(>); "

    Select SCOPE_IDENTITY() as RecID;

    < / cfquery >

    < cfquery name = "addRecords2" datasource = 'test' >

    Insert into Table2(Company,City,Date,ID)

    Values (< cfqueryparam cfsqltype = "cf_sql_char" value = "#arguments.Company #" >,)

    < cfqueryparam cfsqltype = "cf_sql_char" value = "" #City # ">,"

    < cfqueryparam cfsqltype = 'cf_sql_date' value = "" #Date # ">,"

    ( < cfqueryparam cfsqltype = "cf_sql_int" value = "How to pass RecID to insert in this table?" >).

    < / cfquery >

    In this example, I'm inserting records in table 1 and creation of IDENTITY SCOPE as RecId. I would like to pass this id and insert it in my table 2. This Id, I'll use in my second table as an identifier. If anyone knows anything about this please let me know. Thank you.

    );
    

    QueryName - DOT - ColumnName, so it should be:

    );
    

    HTH,

    ^_^

  • Creating records from two Tables at the same time...

    I would be very grateful if someone could help with the following query.

    I have two Tables, Tbl1 and Tbl2. Tbl1 has the following columns: -.

    Tbl1_Unique_ID, Description

    Tbl1_Unique_ID is of type ' * number *' and ' * PK * ', Description is of type' * Varchar2 *'.

    Tbl2 has the following columns: -.

    Tbl2_Unique_ID, Description, Tbl1_Unique_ID

    Tbl2_Unique_ID is of type ' * number *' and is the ' * PK * ', Description is of type' * Varchar2 *' and Tbl1_Unique_ID is of type ' * number *', is a ' * foreign key *' and is the ' * primary key *' from Tbl1.

    While I can create a page to display and create folders in Tbl1, I'm not course coding required to view and create records Tbl1 and Tbl2 simultaneously, as well as regarding the two together at the same time.

    I know that it involves one ' * INSERT *' statement, but I have problems the correct SQL query.

    Can anyone provide any assistance will be appreciated.

    Have you tried to create a form master / detail page? Because it seems that is what you need...

  • Remove two tables at the same time

    Hello
    Is there any way to remove many tables at the same time?

    delete from tbl1, tbl2.

    Thank you

    953402 wrote:
    Hello
    Is there any way to remove many tables at the same time?

    delete from tbl1, tbl2.

    Thank you

    NO.

    Consider actually Read The Fine Manual below

    http://docs.Oracle.com/CD/E11882_01/server.112/e26088/TOC.htm

  • Mr President, how can I enter two rows at the same time with different default values that only the first line to use see?

    Mr President.

    My worm jdev is 12.2.1

    How to enter two rows at the same time with different default values that only the first line to use see?

    Suppose I have a table with four fields as below

    "DEBIT" VARCHAR2(7) , 
      "DRNAME" VARCHAR2(50),
      "CREDIT" VARCHAR2(7) , 
      "CRNAME" VARCHAR2(50),
    

    Now I want that when I click on a button (create an insert) to create the first line with the default values below

    firstrow.png

    So if I click on the button and then validate the second row with different values is also inserted on commit.

    The value of the second row are like the picture below

    tworows.png

    But the second row should be invisible. It could be achieved by adding vc in the vo.

    The difficult part in my question is therefore, to add the second row with the new default values.

    Because I already added default values in the first row.

    Now how to add second time default values.

    Concerning

    Mr President

    I change the code given by expensive Sameh Nassar and get my results.

    Thanks once again dear Sameh Nassar .

    My code to get my goal is

    First line of code is

        protected void doDML(int operation, TransactionEvent e) {    
    
            if(operation != DML_DELETE)
                 {
                     setAmount(getPurqty().multiply(getUnitpurprice()));
                 } 
    
            if (operation == DML_INSERT )
                       {
                               System.out.println("I am in Insert with vid= " + getVid());
                           insertSecondRowInDatabase(getVid(),getLineitem(),"6010010","SALES TAX PAYABLE",
                            (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                           }
    
            if(operation == DML_UPDATE)
                              {                                                    
    
                                 System.out.println("I am in Update with vid= " + getVid());
                             updateSecondRowInDatabase(getVid(),
                                 (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                              }                      
    
            super.doDML(operation, e);
        }
        private void insertSecondRowInDatabase(Object value1, Object value2, Object value3, Object value4, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "Insert into vdet (VID,LINEITEM,DEBIT,DRNAME,AMOUNT) values " +
                 "('" + value1 + "','" + value2 + "','" + value3 + "','" + value4 + "','" + value5 + "')";  
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }
                  }  
    
                  private void updateSecondRowInDatabase(Object value1, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "update vdet set  AMOUNT='"+ value5+"' where VID='" + value1 + "'";                     
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);  
    
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }                  
    
                  }
    

    Second line code is inside a bean method

        public void addNewPurchaseVoucher(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("VoucherView1Iterator");
                   RowSetIterator rsi = dciter.getRowSetIterator();
                   Row lastRow = rsi.last();
                   int lastRowIndex = rsi.getRangeIndexOf(lastRow);
                   Row newRow = rsi.createRow();
                   newRow.setNewRowState(Row.STATUS_NEW);
                   rsi.insertRowAtRangeIndex(lastRowIndex +1, newRow);
                   rsi.setCurrentRow(newRow);
    
                   BindingContainer bindings1 = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter1 = (DCIteratorBinding) bindings1.get("VdetView1Iterator");
                   RowSetIterator rsi1 = dciter1.getRowSetIterator();
                   Row lastRow1 = rsi1.last();
                   int lastRowIndex1 = rsi1.getRangeIndexOf(lastRow1);
                   Row newRow1 = rsi1.createRow();
                   newRow1.setNewRowState(Row.STATUS_NEW);
                   rsi1.insertRowAtRangeIndex(lastRowIndex1 +1, newRow1);
                   rsi1.setCurrentRow(newRow1);
        }
    

    And final saveUpdate method is

        public void saveUpdateButton(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindingsBC = BindingContext.getCurrent().getCurrentBindingsEntry();      
    
                   OperationBinding commit = bindingsBC.getOperationBinding("Commit");
                   commit.execute(); 
    
            OperationBinding operationBinding = BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Commit");
            operationBinding.execute();
            DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("VdetView1Iterator");// write iterator name from pageDef.
            iter.getViewObject().executeQuery();  
    
        }
    

    Thanks for all the cooperation to obtain the desired results.

    Concerning

  • the two versions of Muse (2015.0 and 2015.1) at the same time

    Hello dear Musers,

    Is it possible to install both versions (2015.0 AND 2015.1) at the same time?

    I manage several sites and I want to be able to update regularly (stable and bug release 2015.0) while slowly, tests and moving them to reagent (2015.1)? Also to start playing with the possibilities of delicate design in Muse.

    I also have a site with complex effects of scrolling that should stay that way. I can't run the risk of not working after the update... at least I have a replacement with Animations of EDGE...

    Thanks for the help.

    J. Vallejo

    If you an active member of Muse and can accept the terms of the non-disclosure agreement, my recommendation would be to join the beta program of Muse at http://museprerelease.com. At the moment the latest preliminary 2015.1 is always displayed and it is basically identical to the retail version, but with a splash screen different. In general, it is deleted shortly after the production version is released, but has not yet happened.

    The preliminary version installs the construction of shipping along the coast. The two have no overlap, other than the fact by double clicking a .muse file is a bit of a gamble in terms of what version of Muse, the operating system decides to launch.

  • How to display two dept details at the same time in the form of master-detail

    Hi Experts

    In Forms 6I, using the Scott schema, table DEPT & EMP has created a simple form of master-details relationships.

    Currently when user Dept Block shows all lines dept and EMP block display data based on the selection of deptno.

    It's only a deptno both.

    If the user in the No. 10, block EMP Dept will display all the data related to 10

    If the user moves to 20 Deptno, block EMP will display all the data related to 20.

    And so on.

    But our requirement, what happens if we want to see the 10 and 20 at once (both several deptno)

    Thank you

    Thanks for your information.

    In fact, our requirement is only to display data, he own be no matter what update of data/insertion.

    So below and working for our requirement

    • Remove relationship
    • Additional box on master block.
    • Write code cursor on the box selection - which will fill/clear data block information based on the checkbox selection on block Master.

    Oracle Apps training: how to display two Department employee details at the same time in the master/detail relationship

  • Random table and present several elements of the array at the same time

    Hi all

    I figured out how to randomize an array and present the items where the user can scroll through the items one at a time. However, I would like to know how I could go for the presentation of the elements of a random array at the same time. To be concrete, suppose I have a list of three words that is Word 1 and Word 2 Word 3. For each user, I'm looking for present all three words on the screen at the same time, but in a different order. If a person can see it on the screen:

    WORD 1

    WORD 3

    WORD 2

    and someone else could see

    WORD 3

    WORD 2

    WORD 1

    Pointers or guides are appreciated. Thanks for reading.

    You say that you already know how random the table, so I won't go into that. Assume that you already have 3 TextFields on screen and called tf1, tf2 and tf3. You didn't say if you use Classes or script code. I'm not a big fan of code of script in AS3, so I'm not good at writing of examples in there. The example here assumes that the class code. It also assumes

    1. You have ' declare stage instances to automatically "off
    2. TF1, tf2 and tf3 exist in all frames of the timeline of the MC that uses this class.
    public class Words extends MovieClip {
        protected var wordSource:Array;
        public var tf1:TextField;
        public var tf2:TextField;
        public var tf3:TextFiels;
    
        //constructor
        public function Words() {
              super();
              //init your wordSource array here
    
              //a Vector is like an Array, but you're very sure what type of "thing" is at each index.
              //in this case, it's TextFields.
              var tfs:Vetor. = Vector.([tf1, tf2, tf3]);
              //loop through each word and each text field and match them up
              var loops = wordSource.length;
              for (var i=0; i		   
  • 2 forms to modify the same table at the same time

    I have a block record multi and now we add more fields to the table. I thought I had
    users press a button for a specific record in the block and then he would open another form (or something like that)
    to set up a regular shape where they may enter these details).
    But then I think two forms at the same time, changing the same table is going to be a problem.
    right?
    Is there a way to do what I want? I want the user to choose and to be able to change some things of 'a grid.
    aka multi-record block and then be able to go to a non tabular entry in the details form. Is it possible to do?

    then he would open another form (or something like that)

    Could be another form, or just another block in a different window/canvas or even field in the same block using 'Reflect the elements' ('synchronize with' - property)

    But then I think two forms at the same time, changing the same table is going to be a problem.

    Not necessarily. If you use CALL_FORM or OPEN_FORM without having to open a new session it is no problem to do so. You just check that the modifications of the form "first" are recorded or posted at least before opening detailed form.

  • How to have an amount and cut in two at the same time

    Hi everyone, I need to display the data as in the example (4 areas):
    Product Category           Number of tickets by category               Product               Number of tickets by product
    Category 1                              100                            product A                             50
                                                                           product B                              50

    Category 2                               10                             product C                              8
                                                                           product D                               2
    As you can see, I need to see the total number of tickets for each category of product and then cut in two by product.

    In an attempt to have this result, I take the following fields the sector of activity:

    Product category
    Count (tickets_id)
    Product

    but I'm not able to have the amount of tickets per category and the quantity of tickets per product at the same time within the report... because as soon as I shared by product I lose the total number of tickets by category...

    How can I have this two amounts together? The first designating all of the notes of the category and the second split by product at the same time?

    I tried to do a calculation count (count (tickets_id))... but it is not possible... I got the error "Aggregate functions Nested are not permitted..."

    Any help will be appreciated

    Thanks in advance

    Alex

    Hi Alex,
    In cases like yours when you need two different levels of aggregation, you can use the analytical functions.
    From BA to select only the Product_Category elements and product and create new calculations:

    1. on behalf of the tickets:
    Count (tickets_id) more (Product_Category partition)
    2. for the number of tickets per product:
    Count (tickets_id) more (partition Product_Category, product)

    you will get:

    Product_category count by product by product category
    ---------------------------------------------------------------------------------------------------------------------------------
    1 100 A 50 category product
    Category 1 100 product B 50
    Category 2 10 C 8
    Category 2 10 D 2

    Now if you want you can use the sort and apply the sorting group so it will look like your table model.

    Note that I assumed that a product may be in a category.
    If you got another one then just change groups in the calculation according to the needs.

  • two device to listen to music online at the same time

    I have only one subscription, but I can't listen to music online of my two devices at the same time... If I buy the family pass... could do?

    Thank you, Diego

    Hello desorejonaremos,

    Thank you for using communities of Apple Support.

    If I understand your message that you are not able to listen to your music on two different devices at the same time. With an individual membership of Apple's music, you can play music online 1 device at a time. It also allows you to play your music offline for up to 10 devices. If you want to listen to your music online from multiple devices at the same time, a family membership will give you this ability for up to 6 devices.

    This article presents additional information on the operation of Apple's music with a family membership:

    On the Apple music

    With a family membership at Apple music, families of up to six people can enjoy all the benefits of Apple music, each with their own library.

    To use a family membership, you must first set up sharing of family. Then, when you join Apple music, choose a family membership. When your family members join music Apple, they must use the same ID share Apple they used to join the family. After they join Apple music and you connect with Apple ID them, they will automatically be added to your family members.

    You can also change for a family membership when you you affiliate.

    Best regards.

  • How to display two open sites at the same time on the screen instead of switch between tabs?

    I need to open two different sites using Firefox. They appear as tabs, but I can only show a tab at a time and have continually switch back. I need to have two separate sites open and displayed simultaneously on the screen. Is there a way to do this or an add-on that will support multiple windows open on the screen?

    You can open all pages in separate windows and resize and position windows horizontally or vertically to the two visible at the same time.

    Note that you can drag a tab slightly downwards in the navigation window to tear off the tab, or use the context menu of the tab (transition to the new window).

  • Two different language versions of Firefox at the same time?

    I am running Windows 7 Home Premium. I have two accounts, one for me and one for my wife. She uses Firefox (Japanese), and I've been using another browser. But I would like to firstly using Firefox (in English).

    Is it possible to run two different language versions of Firefox on the same computer? I want to be able to run both at the same time... (So if I navigate and she wants to check an auction quickly it can without my duty close my browser).

    Can be done with relative ease?

    Make sure that each of you has their own Firefox profile folder.

    See:

    You can add - no.-distance to the command line to open another instance of Firefox with its own profile and run multiple instances of Firefox at the same time.

  • I want to view two web pages side by side or at the same time

    I want to view two web pages at the same time so that I can add information from one to the other.

    Is there a way to do this?

    Try one of these:

  • Is it possible to use express Airport and Time Capsule both as two Wifi-repeaters at the same time?

    Hello

    I have a time Capsule from the airport. I use it for my back ups and he repeats my wifi in the House (bottom).

    Now I need a Repeater wifi upstairs. I think to buy Airport Express. I will connect the Airport express with a Lan connection on the floor. And then I would also have wifi on the floor.

    But is it possible to use the time Capsule Airport express airport and at the same time: two repeaters-wifi?

    1. I have a Fritz! Box router / wifi (we called wifi Fritz! box)

    2. I have a time Capsule airport / wifi Repeater (we called the turtle wifi)

    3 and now I want Airport express on the floor for the wifi upstairs (another name for this wifi?)

    Is this possible?

    Before I had used TP-link (in socket), but it works for a few months.

    Thank you for your help and advice.

    2. I have a time Capsule airport / wifi Repeater (we called the turtle wifi)

    I think that your terminology wrong... the TC cannot work as a Repeater in the Frtiz.

    I think that you have done is connect via ethernet and run it as wireless... or WAP Access Point. It is perfectly great way to do it.

    3 and now I want Airport express on the floor for the wifi upstairs (another name for this wifi?)

    This is connected by ethernet, then it will work fine... you can call it Expresswifi

    You are certainly going to clutter the wireless channels, you could so be interesting rather than auto setting fastenings.

    2.4 ghz has been set to 1, TC 6 and 11 Express then Frtiz.

    5 GHz is less of a problem... auto should be fine, because the beach is mediocre.

  • How I have two tabs open at the same time

    I want to work on both windows at the same time, in order to drag a symbol from one to the other

    Perhaps there is an add-on to view side-by-side tabs in the same window? Certainly, it is not built in.

    You can open pages in two separate windows and resize the windows so that they appear side by side.

    Let's say you have a window with two tabs open. If you restore the window if it is not expanded (you can see some Office behind it), then you can drag a tab from the window and drop it on the screen area to give it its own window.

    As far as I know, there isn't a way to place these side-by-side windows automatically, but you can use all the usual methods of resizing windows with the mouse to set up.

Maybe you are looking for

  • iCloud does not synchronize

    Hello everyone! I have some days that I am facing a problem with my iCloud Drive, it is not sync between my devices, I tried a list of solutions and read a lot of topics around the internet, I tried to exclude account from my mac and set it again, bu

  • HP 250 G3: hardware support is Israel

    One of our G3 250 HP does not start. I'm looking for a support of HP in Israel. Thank you.

  • MSSQL Server Management Studio - Exception was thrown by the target of a call.

    Hello I ran a backup in MSSQL Sever Mananagement Studio and I got the error message "Exception was thrown by the target of an invocation."  Can someone explain what it means and how to fix it?  It happens during the task of "Verifying the database In

  • problem in the game 3d

    My motherboard comes with intel 82845 G graphics controller. I installed the latest graphics driver. When I start to play a 3D game after 5 minutes, it freezes up. and when he answers, it shows that a video driver named ialmrnt5.dll has stopped worki

  • Receiving an unauthorized display was made to Windows and my system will not be validated.

    When I turn on my laptop, I get a 'feature' pop-up. I say "more" AND THEN... It says "an unauthorized change was made to the windows" I click on learn more. Then he said: 'try to validate' the page never finished trying to validate. I use firefox, bu