working with table

Hello?!

I have a table, example: (1, 2, 3, 4)
and I want to change the position of the '1' with '4', how can I?
and remove the "1"?

Thank you
Mello

Thank you... but I did a crazy thing... but works...; x
I created two functions crazy xD

Tags: Adobe Animate

Similar Questions

  • Working with tables on a webservice response

    I use QtSoap to receive a response from a Web service, it consists mainly of three large paintings full of articles.

    I'm confused, how to manage the responses, especially the berries.

    Feel free to improve some of my code, developer java I'm collecting pieces of code from all the corners of the web and try to get running them together

    What I got so far is to iterate over the answer and 'find' the relevant tables.

    But how to convert the element in a table? So far, my weak attempts failed to succeed.

    const QtSoapMessage& resp = m_soap.getResponse();
    QtSoapStruct &m = (QtSoapStruct &) resp.method();
    for (QtSoapStructIterator it(m); it.current(); ++it) {
        QtSoapType *item = it.data();
        if (QString::compare("Attributes", item->name().name()) == 0) {
                qDebug() << "Attributes found";
        } else if (QString::compare("Box", item->name().name()) == 0) {
                qDebug() << "Box found";
        } else if (QString::compare("Tabs", item->name().name()) == 0) {
                qDebug() << "Tabs found";
        } else if (QString::compare("Version", item->name().name()) == 0) {
                qDebug() << "Version: "+item->value().toString();
        }
    }
    

    Have not tried it myself, but I think you can convert your points of QtSoapType to QtSoapArray if they are of this type.

    QtSoapType *item = it.data();
    
    if (item != NULL && item->type() == QtSoapType::Array)
    {
        QtSoapArray* array = (QtSoapArray*)item;
        // now work with array
    }
    

    I would like to know if it works.

  • Easy to work with tables in InDesign for better organization

    Hello. I'm on a MacBook Pro using CS6.

    I often work with catalogues and price lists. These cases were referred in me and I am their redesign.

    Right now I'm working on a catalogue which is 40 pages. Here is a picture of a sample of what it looks like over the course of...

    Reference numbers are not in order and I'm working on it. As you can see, we have a table header that would be on every page:

    "Image number Description element.

    I put in order the following, these headers are circulating throughout the document that I have delete/insert lines. (Some cells are different sizes [as you can see on the color boxes in the image below]).

    I also wonder if anyone has experience in design/creation of catalogues and if they have any input regarding what works best for them.

    Thanks for your time.

    Screen Shot 2014-07-17 at 12.29.26 PM.png

    When you say that the header are fluid, I take this means they are repeated on each page and are moving high when you make changes?

    If this is the case, you must remove all headers except the one on the first page. Select this line and under the Table, choose Convert line > letterhead. You can then choose in the configuration of the Table have the header to repeat at the top of each image, once per page or every text column. All changes to the main header will be now repeat on each page and the header will stay on top of every page, regardless of how you move your objects.

  • Works with tables/columns of the lines and the parameter names... syntax help

    I am trying to create a function that returns the distinct value and counts of a user defined schema/table/column.

    The code below defines a [stats_on_column_obj] object type and creates a single table of this type [stats_on_column_tab].

    The function is supposed to take three input variables: p_schema_name, nom_table_p, p_column_name and return an array (above).

    I can hardcode a select into (the)... but once I try to convert it into settings & immediate exec I'm stuck. The red section is where the problem is (I think).

    Oracle 10g.

    Stats_on_column_obj CREATE TYPE IS OBJECT (

    COL_VAL VARCHAR2 (500),

    NUMBER OF COL_VAL_CNT (7)

    );

    CREATE TYPE Stats_on_column_tab IS TABLE OF stats_on_column_obj;


    FUNCTION to CREATE or REPLACE get_STATS_ON_COLUMN

    (

    p_schema_name IN varchar2,

    nom_table_p IN varchar2,

    p_column_name IN varchar2

    )

    RETURN STATS_ON_COLUMN_tab

    IS

    l_STATS_ON_COLUMN_tab STATS_ON_COLUMN_tab: = STATS_ON_COLUMN_tab ();

    n INTEGER: = 0;

    str_select_tbl varchar2 (5000);

    BEGIN

    str_select_tbl: = 'SELECT'. p_column_name |' as col_val, count (*) as col_val_cnt FROM ' | p_schema_name |'. ' || nom_table_p: ' group of ' | p_column_name;

    FOR r IN (str_select_tbl)

    LOOP

    l_STATS_ON_COLUMN_tab. EXTEND;

    n: = n + 1;

    l_STATS_ON_COLUMN_tab (n): = STATS_ON_COLUMN_obj (r.col_val, r.col_val_cnt);

    END LOOP;

    RETURN l_STATS_ON_COLUMN_tab;

    END;

    /

    [Error] PLS-00103 (124:4): PLS-00103: encountered the symbol "LOOP" when expecting one of the following numbers: * & - + / at rem rest mod.. < an exponent (*) > | multiset year DAY_

    [Error] PLS-00103 (126:9): PLS-00103: encountered the symbol "=" when expected in the following way: constant exception < an ID > < a between double quote delimited identifiers > double Ref table Fedya Chariot of time timestam

    [Error] PLS-00103 (127:29): PLS-00103: encountered the symbol "

    [Error] PLS-00103 (128:4): PLS-00103: encountered the symbol "END" when waiting for one of the following numbers: begin function package pragma procedure subtype type use < an ID > < a double quote delimited identifier > form

    SELECT * FROM TABLE (get_STATS_ON_COLUMN ('SCHEMAS_X', 'TABLE_X', 'COLUMN_X'));

    Scott@ORCL > CREATE OR REPLACE
    FUNCTION get_STATS_ON_COLUMN () 2
    3 p_schema_name IN varchar2,
    4 nom_table_p IN varchar2,
    5 p_column_name IN varchar2
    6                                )
    7 STATS_ON_COLUMN_tab of RETURN
    8 EAST
    9 v_STATS_ON_COLUMN_tab STATS_ON_COLUMN_tab: = STATS_ON_COLUMN_tab ();
    10 v_n INTEGER: = 0;
    11 v_str_select_tbl VARCHAR2 (5000);
    BEGIN 12
    13 v_str_select_tbl: = ' SELECT stats_on_column_obj (' | p_column_name |) ', Count OF ' |
    14 p_schema_name | '.' || nom_table_p | "Group of" | p_column_name;
    15 v_str_select_tbl EXECUTE IMMEDIATE
    COLLECTION IN BULK 16
    17 IN v_STATS_ON_COLUMN_tab;
    18 RETURN v_STATS_ON_COLUMN_tab;
    END 19;
    20.

    The function is created.

    Scott@ORCL > select *.
    2 from table)
    (3 get_STATS_ON_COLUMN)
    4                                            'SCOTT',
    5                                            'EMP',
    6                                            'JOB'
    7                                           )
    8                       )
    9.

    COL_VAL COL_VAL_CNT
    -------------------- -----------
    CLERK                          4
    SELLER 4
    PRESIDENT 1
    MANAGER 3
    ANALYST 2

    Scott@ORCL >

    Or better change function in the pipeline.

    SY.

  • How to work with tables (or lists) in the responses of WebService?

    Good evening!

    In a BPEL process, I invoked a certain Webservice that return me a list of people. Like this:

    < response >
    < personList >
    < person > Person1 < / person >
    < person > Person2 < / person >
    < person > channels3 < / person >
    < / people >
    < / respons >

    Now I need to do something with each returned item (like to call another Web service with the parameter 'person' (so I need to call a Web service for a 3 times))

    How can I do this?

    In the Assign CopyRules element, I see only:
    response | _
    personList | _
    Nobody

    As a person is a simple element, not a list.


    Can I use one for each element? And what next?

    Thank you.

    http://download.Oracle.com/docs/CD/E12483_01/integrate.1013/b28981/manipdoc.htm#BABCHBFB
    http://clemensblog.blogspot.com/2006/03/BPEL-looping-over-arrays-Collections.html
    http://oraclebpelindepth.blogspot.com/2008/09/arrays-in-bpel_21.html

    Indeed, you need for each and loop over each item in the person in

    in the loop, you can call the other service with the input of the corresponding person-element-data data

    person [1] / name
    [2] person / name

    etc.

  • Working with table gross typed the parameter of the procedure.

    I have a table defined as


    CREATE TABLE 'JOBS '.
    ("JOB_ID' VARCHAR2 (200 BYTE),
    'FUNCTION' RAW (16).
    NUMBER OF "MIN_SALARY."
    NUMBER OF "MAX_SALARY.
    )



    Defined as package

    create or replace package associative_array as
    type t_job_id is table of index jobs.job_id%type by pls_integer;
    type t_job_title is table of index jobs.job_title%type by pls_integer;
    type t_min_salary is table of index jobs.min_salary%type by pls_integer;
    type t_max_salary is table of index jobs.max_salary%type by pls_integer;

    procedure array_insert (p_job_id in t_job_id,
    p_job_title in t_job_title,
    p_min_salary in t_min_salary,
    p_max_salary to t_max_salary);
    end associative_array;
    /


    create or replace package body associative_array as
    procedure array_insert (p_job_id in t_job_id,
    p_job_title in t_job_title,
    p_min_salary in t_min_salary,
    p_max_salary to t_max_salary) is
    Start
    ForAll i in p_job_id.first... p_job_id. Last
    insert into jobs (job_id,
    function,
    min_salary,
    max_salary)
    values (p_job_id (i),
    p_job_title (i),
    p_min_salary (i),
    p_max_salary (i));
    end array_insert;
    end associative_array;
    /

    The client code is

    String s = "UserID = system; password = system; data source = ORCL; enlist = true; layout common = true ";

    create and open the connection object
    Con OracleConnection = new OracleConnection (constr.);
    con. Open();
    OracleCommand cmd = con. CreateCommand();
    cmd.CommandText = "associative_array.array_insert";
    cmd.CommandType = CommandType.StoredProcedure;

    create objects for each parameter setting
    OracleParameter p_job_id = new OracleParameter();
    OracleParameter p_job_title = new OracleParameter();
    OracleParameter p_min_salary = new OracleParameter();
    OracleParameter p_max_salary = new OracleParameter();

    set the type parameter for each parameter
    p_job_id. OracleDbType is OracleDbType.Varchar2.;
    p_job_title. OracleDbType = OracleDbType.Raw;
    p_min_salary. OracleDbType = OracleDbType.Decimal;
    p_max_salary. OracleDbType = OracleDbType.Decimal;

    Set the type of collection for each parameter
    p_job_id CollectionType in the Group OracleCollectionType.PLSQLAssociativeArray;
    p_job_title. CollectionType = OracleCollectionType.PLSQLAssociativeArray;
    p_min_salary. CollectionType = OracleCollectionType.PLSQLAssociativeArray;
    p_max_salary. CollectionType = OracleCollectionType.PLSQLAssociativeArray;

    Set the parameter values
    p_job_id. value = new string [3] {"IT_DBA", "IT_MAN", "IT_VP"};
    p_job_title. Value = new Guid [1] {Guid.NewGuid ()};
    p_min_salary. Value = new decimal [3] {8000, 12000, 18000};
    p_max_salary. Value = new decimal [3] {16000, 24000, 36000};

    set the size for each table
    p_job_id. size = 3;
    p_job_title. Size = 1;
    p_min_salary. Size = 3;
    p_max_salary. Size = 3;

    p_job_id. ParameterName = "p_job_id";
    p_min_salary. ParameterName = "p_min_salary";
    p_max_salary. ParameterName = "p_max_salary";
    p_job_title. ParameterName = "p_job_title";

    Add parameters to the collection of command objects
    cmd. Parameters.Add (p_job_id);
    cmd. Parameters.Add (p_job_title);
    cmd. Parameters.Add (p_min_salary);
    cmd. Parameters.Add (p_max_salary);

    BindByName. cmd = true;
    run the insert
    cmd ExecuteNonQuery());

    Error occurred during execution of the customer.

    Unhandled exception: System.ArgumentException: invalid parameter binding
    Parameter name: p_job_title
    at Oracle.DataAccess.Client.OracleParameter.GetBindingSize_Raw (Int32 idx)
    at Oracle.DataAccess.Client.OracleParameter.PreBind_Raw)
    to Oracle.DataAccess.Client.OracleParameter.PreBind (OracleConnection conn, IntPtr errCtx, Int32 arraySize)
    at Oracle.DataAccess.Client.OracleCommand.ExecuteNonQuery)

    But if I change jobs. P_job_title varchar2 and change function. Value and p_job_title. Therefore, any OracleDbType is fine.

    Following me is at fault-
    p_job_title. Value = new Guid [1] {Guid.NewGuid ()};

    Since you have already said-
    p_job_title. OracleDbType = OracleDbType.Raw;

    You must have 'p_job_title. Value' as 'Byte' or 'OracleBinary.

    It will be useful.

  • Works with table as parameter name

    How to fix this feature

    Create or replace function f1 ( tab_name in varchar2 )
    return number
    as 
    num_of_row number;
    begin
    num_of_row := 'select count(*) from' || 'tab_name'';
    return num_of_row;
    end;
    
    
    create or replace function f1 ( tab_name in varchar2 )
    return number
    as
    num_of_row number;
    sqlstr varchar2(900);
    begin
    sqlstr :=  ' SELECT count(*) FROM '||  tab_name;
    execute Immediate sqlstr Into num_of_row;
    return num_of_row;
    end;
    

    I have it

  • Addition of the new Image and text to an existing Page created with Tables

    Work in DW 5.5

    I try to add a new image/link and a small amount of text to an existing web page that was created with tables and centered.  I use AP div tags. One for the image and one for the text.  Everything works fine, but I can't get the new anchor points and to re - center with the rest of the page.  I'm not able to get around the "absolute positioning".  I tried different solutions of various tutorials but I can't make them work with tables.

    Added items are a Facebook button and text.

    Go to: http://www.sugarhollowfarms.NET/index.html See the problem.

    Help, please. I'm not that experienced.

    First, make a back up of the page before you implement the changes below!

    Take the bit of code below to

    and insert it directly after the opening tag div FWTableContainer and before your opening table tag (see location below):

    Then add - position: relative; -to the css of FWTableContainer (as shown below):

    {#FWTableContainer209091602}

    / * The div master to make sure that our contextual menus get properly aligned.  Be careful when you play with this one. */

    position: relative;

    margin: auto;

    Width: 800px;

    height: 600px;

    text-align: left;

    top: 20px;

    background-image: url(images/homepage_new3.jpg);

    border: medium solid #336600;

    position: relative;

    }

    Edit the css for FBlogo to as below:

    {#FBlogo}

    position: absolute;

    left: 700px;

    top: 380px;

    Width: 91px;

    z-index: 1;

    text-align: center;

    }

    Edit the css for bodytext as below:

    {.bodytext}

    do-family: Verdana, Arial, Helvetica, without serif.

    do-size: 11px;

    line-height: 13px;

    margin: 0;

    padding: 0;

    }

  • Is it possible to work with the conditions of a table in excel?

    I create a vi that store a lot of encoder pulse signals in a table, and I want to work with these terms as I in excel. Things like an average of a column, multiply the terms in the table, divide by constants.

    is this possible? Otherwise, what is the best way to work with this kind of data?

    Quite possible, that is the question to have tables, that you can manipulate as you need. The possibilities are endless.

  • Get all the different values in a table - 'or array elements' does not work with I32

    Hello

    I just found out that "array elements or" does not work with a table 1 d of integer values. I didn't expect that.

    I did a semi quick forum search and did not find a pointer to an effective solution. Can someone give me a hint?

    Do not back my initial intention is to list all the values that appear in an array of integers.

    I thought that if I converted the figures for powers of 2 and or I had solved the problem at hand - only to discover that the elements of array does not.

    If someone could propose a different approach, I'd be happy too.

    I should mention that the execution time is a factor here - I need a fast code, but any suggestions are welcome because they could help me get started.

    Best regards Florian

    Hi Florian.

    try this:

    "Function, it seems, the table of GOLD ' is polymorphic (as written in the context-sensitive help), but does not support arrays of I32. At least the error message means just that...

  • Search page based on query with Table on Layershift ADF Panel does not work correctly

    Hello

    I'm on 11.1.2.4 jdev and deployed my application on glassfish 3.1.2. I've hosted this application on Layershift externally.

    I created a search page based on query ADF with table Panel. All fields of research are working fine on weblogic Server integrated and my deployment local glassfish.

    However, on Layershift, when I enter some criteria of research in certain fields, it does not record.

    UPDATE, it seems that the problem is with the fields which are of the "String" ie. Name. Fields of data type Integer and Date seems fine.

    any ideas please?

    Thank you

    kdario, you're right, ViewCriteria does not use the correct syntax for mysql for the concatenation.

    The generated sql statement looks like this.

    SELECT * FROM (select student_id, student_name, from  student) QRSLT WHERE ( ( (UPPER(student_name) LIKE UPPER('%' || 'Per' || '%') ) ) )
    

    as DB MySql does not support | (double pipe sign), its sql causing failure.

    in order to support |, mysql requires to change the sql mode setting in the file my.cnf (on linux) in the

    # Set the SQL mode to strict
    sql-mode="PIPES_AS_CONCAT,STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
    

    After setting this parameter, its working fine now.

  • Panel request ADF with Table does not work

    I am simple search.jsf of JSF page. In the search.jsf , I have an ADF search form. I drag and drop the view criteria into the Panel Query ADF with Table. The user search result will be displayed in a table ADF. The View object is simple no LOVs no variable binding even no where clause.



    Everything works fine if I run the page separately not with in the workflow. But if I turn the page with in a workflow, the search engine does not work.

    The workflow structure is simple, it has towed home.jsf and search.jsf pages and there is a control of navigation of the home page to the Search page. The problem is that the search engine is not work IE when I press the default search key that doesn't come with the form no coming on the data table.,.


    I use Jdeveloper with ADF technology 11.1.2.3

    My God, what a ridiculous and foolish.

    Partial trigger is missing.

    I have to add the id of the request to the partial trigger on the table. I thought that his coming by default to search forum.

    What a waste of time...

  • Need help with table 2D

    Hi all

    I work with a 2D array that stores numerical values. Let me explain my problem with an example.

    Consider a 2D table as shown in the picture (input.png) attached. elements of the 2nd row are already present

    in the 1st row. How can I get a new 2d array in which the rows, which already are one subset of another

    rank, are not present, that is, each line has unique elements only. (output.png)

    Thank you very much for the help.

    Concerning

    Aveo


  • What pen would work with the touchsmart pc (TouchSmart 610-1031)? any recommendation?

    I like the table (or digital pen) would work on my smart touch computer (610-1031F).

    I would like to use for drawing/painting...on especially the touch screen and writing.

    I saw the small number of products HP online.  They don't really explain a lot... and I can not really compare how these products work differently. They show the compatible products and I am not sure that they only work for the specific products or prodect smart touch in general.

    http://h20386.www2.HP.com/CanadaStore/product.aspx?hpproduct=KG517AA

    http://h20386.www2.HP.com/CanadaStore/product.aspx?hpproduct=VX406AA

    http://h10010.www1.HP.com/wwpc/za/en/Ho/WF06c/A1-329290-69998-329269-329269-3757222-496097.html

    http://www.Amazon.com/HP-digital-pen-eraser-PL800A/DP/B0009ME7FI/ref=cm_cr_pr_product_top

    any recommendation?

    I'm oepn of any product will work with my pc.

    Sotra wrote:

    Is there a way? certain parameter? or stylus?

    No, as indicated above a pen would change nothing, you want to really does not work with this method of contact, there is no definition that will never make these "touch sensitive" this touch detection method is great for many reasons, but it won't replace something like a Wacom tablet for drawing.

    You really want a tablet that uses a touch of pressure, not a desktop Touchsmart.

  • the joystick does not work with windows 8

    Hello

    I have a problem using the joystick; When I used it with windows 7 it works, but when I tried to use it with windows 8, even if it is detected in windows, it does not work with any of my VIs(labview_2012).is there an issue with labview, or there is a solution to solve this.

    Thank you

    I wrote this VI in order to study how to integrate a Joystick into my LabVIEW code (I called the "Joystick Sampler" VI).  It has two parts - the lowest fact function, "Query Input Devices", an array of devices, their names and the number of Axes, buttons and POV "hat", in a table called "Joystick Info".  Look at this attention first, in pay to the array Index that seems to match your gamepad, when plug you it into a USB port.

    The upper code can enjoy (one of the) Joystick (s) at the rate of 10 Hz, which allows you to test the buttons, axes, etc..  Note that the primary function of "Initialize the Joystick" takes a parameter (default = 0) which corresponds to the Index of Joystick, you have discovered by looking at the table Info Joystick (see previous paragraph) - If your joystick, for example, seems to be at Index = 4, thread has '4' in the function Initialize Joystick.

    BS

Maybe you are looking for