How to map String[][] into DataGrid

Hi;
This is probably a dummy question.
I will get a String[][] by calling one of my RemoteObject's method. Now I want to put it into a DataGrid.
The String[][] looks like something like this:
[[Admin2, User], [Utility, Application], [Admin1, User]].
here is my datagrid
<mx:DataGrid width="100%" height="100%" id="datagrid">
<mx:columns>
<mx:DataGridColumn headerText="Name"/>
<mx:DataGridColumn headerText="Type"/>
</mx:columns>
</mx:DataGrid>
I tried
datagrid.dataProvider = event.result;
It does not work.
Any idea? Thanks!!!!

tried labelFunciton, not work.
Here are all the related codes:
public function nameLabelFunction(data:Object, column:Object = null):String
  return data[0];
<mx:DataGrid width="100%" height="100%" id="datagrid">
<mx:columns>
<mx:DataGridColumn headerText="Extent Name" labelFunction="nameLabelFunction"/>
<mx:DataGridColumn headerText="Extent Type" />
</mx:columns>
</mx:DataGrid>
protected function resultHandler(event:ResultEvent):void
datagrid.dataProvider =  event.result as ArrayCollection;

Similar Messages

  • How to insert data into datagrid dynamically and also programatically with data and column names being retrived from a xml file..

    iam not able to insert data into datagrid corresponding to the column names..as iam inserting both data and column names programatically..ie iam not able to co relate the data with the column names.plzzz help me asap

    A DataGrid is row-based rather than cell-based with each row
    corresponding to an item in an underlying collection (specified in the
    dataProvider property). In order to add data to a DataGrid you
    manipulate the underlying collection, rather than the grid directly.
    Based on the limited description of your problem I would imagine you
    would need to create dynamic objects with property names that correspond
    to the dataFields of your dynamically created datagrid columns.
    So if you had created columns with dataFields "alpha", "beta" and
    "gamma" on your datagrid, you could create an item in your grid by
    adding the following object to your dataProvider:
    var gridItem : Object = new Object();
    gridItem.alpha = "alphaValue";
    gridItem.beta = "betaValue";
    gridItem.gamma = "gammaValue";

  • How to convert string into date

    Hi all,
    I m new to JDeveloper
    I m taking the date as a string then passing it as a string in the method.
    I want to convert tht string into the date of format (DD-MON-YYYY) or any other format
    require yur assistance in this job.
    THANKXX in advance
    ankit

    Is this what you are looking for:
    java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("dd-MMMMM-YYYY");          
    java.util.Date date1 = null;
    try
       date1 = formatter.parse("Thu Jun 3 09:09:30 2004");
    catch(Exception e)
       e.printStackTrace();
    System.out.println("Date1 in millis : " + date1.getTime());
    System.out.println("Date1 in string : " + date1);
    java.util.Date date2 = new java.util.Date(date1.getTime());
    System.out.println("Date2 in string : " + date2);or look at http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html for more options

  • How to save string into memory

    For example...I have some web address stored as string, and i want to write it into memory (just like ctrl+c when you copy some link), so then i can just go to Firefox, and simply ctrl+v to the address bar. Any ideas? Thanks.
    I've add this topic to swing because i want to copy link to memory via right-mouse-click which opens some pop-up menu and there is item called "copy link", but i dont know how to implement this operation..
    Edited by: Lukasito on Nov 11, 2009 8:20 AM

    [http://www.exampledepot.com/egs/java.awt.datatransfer/ToClip.html]

  • How to convert string into date datatype

    hi! there
    i've a date in string format like MM/dd/yyyy
    eg:String sDate = "01/30/2002";
    and i want to convert this string format into java date format
    same as 01/30/2002 only
    when i write like this
    SimpleDateFormat formatter = new SimpleDateFormat ("MM/dd/yyyy");
              String sDate = "1/11/2002";
              java.util.Date oDate = formatter.parse(sDate);
    i'm getting the output
    Fri Jan 11 00:00:00 GMT+05:30 2002
    i just want the out put like 01/30/2002
    plz,help me

    Hi,
    Just use back the SimpleDateFormat object you defined.
    String myDateInStr = formatter.format(oDate);
    this will format a java.util.Date object to a string representation according to the format you specified in the instantiation of SimpleDateFormat object.

  • How to parse String into a char?

    Hi all,
    I have a String variable:
    String s="%28";
    However, the actual value I would like to get is indeed a character '%28', i.e. '(' . How can I change this String to the char I want?
    Thanks a lot for your help.

    remove the %
    and use:char c = (char) Integer.parseInt("28", 16);

  • How to converts string into numbers

    As a beginer now i am asking the above question?
    now i am working with XCode 4.3

    I responded to you here > How to convert pages document into...: Apple Support Communities
    Please do not start duplicate topics 

  • How to convert strings into character type?

    I have created a function module which will display the attributes of the fields of the structure/table by using "DESCRIBE FIELD" command. The problem is that it supports only character-type data objects and the program goes into dump
    if the structure contain any string type.

    Please have a look at class CL_ABAP_DATADESCR. Using this instances of this class should provide all information needed...
    Reward points, if reply is applicable

  • How to embed string into rectangle?

    Hi all.
    I have a rectangular area to draw the string, but the string can be wider than the rectangle it should fit. How to draw truncated string? For example:
    public void paintComponent(Graphics g) {
              String s = new String("This is a very long string");
              int x = 0;
              int y = 0;
              int rectWidth = 20;
              int rectHeight = 10;
              Rectangle r = new Rectangle(x, y, rectWidth, rectHeight);
              int strWidth = g.getFontMetrics().stringWidth(s);
              if (strWidth > rectWidth) {
                   System.err.println("How to do that?");
              } else {
                   g.drawString(s, x, y);
         }Thank you in advance.

    If what you want is for your clipped string to display the "..." just like JLabel does, here is an algorythm that you can use:
    1- If the font metrics tells you that your string is going to get clipped, start removing chars from the end
    2- add "..." to the shortened string.
    3- if that string now fits, done
    4- else goto 1

  • How to split string into element ?

    How do you split common string ??
    String dd = "aaa";
    dd.split("a");  // result ["a","a","a"]

    args[0] will not take the entire string Test Hello
    World. It will take only Test, so only one element in
    the string array.What are you talking about?
    He's running the Test program which receives two arguments:
    args[0] = "Hello"
    args[1] = "World"
    But I'm pretty sure he knew that as he lead his post with:
    "Ever have one of those Doh moments"

  • How to split strings into columns

    Hi guys,
    I have a select like this:
    select 'testing1'||'.'||'testing2'||'.'||'testing3' from dualwhich gives me an output like this:
    testing1.testing2.testing3How can I split this into 3 columns in SQL PLUS?
    Thank you in advance

    user643734 wrote:
    Thank you guys for all your help.
    Hi,
    I tried to resolve your problem using somme functions...
    I know is a long, long story but it works.
    Regards,
    Ion--create table_pivot
    CREATE TABLE pivot_table(id VARCHAR2(1) primary key, all_concat VARCHAR2(1810));
    --add data
    insert into pivot_table (id, all_concat) values('x','12345.2829303132.234234.234234.234234');
    insert into pivot_table (id, all_concat) values('y','67890.2324252627.234234.234234.234234.332545');
    insert into pivot_table (id, all_concat) values('z','11121314.12345.234234.234234.234234.23432.32453245.345435.345435');
    insert into pivot_table (id, all_concat) values('a','151617.67890.234234.234234');
    insert into pivot_table (id, all_concat) values('b','1819202122.1112131415.234234.234234.234234.345435');
    insert into pivot_table (id, all_concat) values('c','2324252627');
    insert into pivot_table (id, all_concat) values('h','2829303132.234234.234234.234234.23432.32453245.345435.345435.4325435.345');
    insert into pivot_table (id, all_concat) values('r','');
    set termout off
    --procedures and functions to compile
    --1. Main function to format strings
    create or replace function fgetformatstring
    (v_max_rows numeric, v_crt_row varchar2, v_table_source varchar2, v_save_to_table varchar2, v_option numeric)
    return varchar2
    is
    v_crt_char      numeric:=0;
    v_pos_char      numeric:=1;
    v_count      numeric:=0;
    v_string_out varchar2(500);
    v_str_paded     varchar2(10):=',null';
    v_length_pad     numeric;
    v_diff_pad numeric;
    l_crt_row varchar2(1800);
    v_char char:=',';
    v_delimiter char:='.';
    l_save_to_table varchar2(1000);
    l_max_rows     numeric;
    begin
    l_crt_row:=replace(v_crt_row,'.' ,',');
    l_save_to_table:=v_save_to_table;
    l_max_rows:=v_max_rows;
    if v_option=0 then     --get the ',null' to paded in pivot_table     
    loop
              v_pos_char:=v_crt_char;
              v_crt_char:=instr(v_crt_row,v_char, v_crt_char+1);
              v_count:=v_count+1;
    exit when v_crt_char=0 or v_count=1000;
         end loop;
         v_string_out:=' ';
         v_count:=v_count-1;
         v_diff_pad :=l_max_rows-1-v_count;
    if v_diff_pad >0 then                    --nothing to add
         v_length_pad:=length(v_str_paded);-- (+v_char)
         v_length_pad:=v_diff_pad*v_length_pad;
         v_length_pad:=v_length_pad+1;
         v_string_out:=rpad(v_string_out,v_length_pad,v_str_paded);
    end if;
    end if;
    if v_option=1 then     --get definition of v_save_to_table
         v_count:=1;
         v_string_out:=' ';
         loop
    exit when v_count=l_max_rows+1 or v_count>=1000;
    v_length_pad:=length(v_string_out||'col'||to_char(v_count)||',');
              v_string_out:=rpad(v_string_out,v_length_pad,'col'||to_char(v_count)||',');
              v_count:=v_count+1;
         end loop;
    v_string_out:=trim(v_char from v_string_out);
              --v_string_out:='id,'||v_string_out;
              v_string_out:=v_string_out;
    end if;
    if v_option=2 then     --get position of last comma  
    loop
              v_pos_char:=v_crt_char;
              v_crt_char:=instr(v_crt_row,v_char, v_crt_char+1);
              v_count:=v_count+1;
    exit when v_crt_char=0 or v_count=1000;
         end loop;
         v_string_out:=substr(v_crt_row,1,v_pos_char-1);
    end if;
    if v_option=3 then     --get numbers of delimiters(.)
    loop
              v_pos_char:=v_crt_char;
              v_crt_char:=instr(v_crt_row,v_delimiter, v_crt_char+1);
    --dbms_output.put_line( 'Rows: ' ||v_crt_row|| ' iteration: '||v_count);
              v_count:=v_count+1;
    exit when v_crt_char=0 or v_count=1000;
         end loop;
         v_count:=v_count;
         v_string_out:=to_char(v_count);
    end if;
    if v_option=4 then     --get sql command to create v_save_to_table
         v_count:=1;
         v_string_out:=' ';
         loop
    exit when v_count=l_max_rows+1 or v_count>=1000;
    v_length_pad:=length(v_string_out||'col'||to_char(v_count)||' varchar2(40), ');
              v_string_out:=rpad(v_string_out,v_length_pad,'col'||to_char(v_count)||' varchar2(40), ');
              v_count:=v_count+1;
         end loop;
    v_string_out:=trim(' ' from v_string_out);
              v_string_out:=trim(v_char from v_string_out);
              v_string_out:='create table '|| l_save_to_table ||'('||v_string_out||')';
    end if;
    if v_option=5 then     --get numbers of delimiters(,) 
    loop
              v_pos_char:=v_crt_char;
              v_crt_char:=instr(v_crt_row,',', v_crt_char+1);
              v_count:=v_count+1;
    exit when v_crt_char=0 or v_count=1000;
         end loop;
         v_count:=v_count-1;
         v_string_out:=to_char(v_count);
    end if;
    dbms_output.put_line( 'string: ' ||v_string_out|| ' option: '||v_option);
    return v_string_out;
    end;
    --2.get max items
    create or replace function fgetmaxitems
    --get the max number of items founded in the pivot_table.all_concat
    --before change the points with comma
    return numeric
    is
    v_max                numeric:=0;
    v_field               pivot_table.all_concat%type;
    v_crt_max numeric:=0;
    v_crt_row     varchar(1000);
    cursor c1 is
    select all_concat from pivot_table;
    begin
    v_crt_max:=0;
    v_max:=0;
    open c1;
    loop
    fetch c1 into v_field;
    exit when c1%notfound;
    v_crt_row:=v_field;
    v_crt_max:=fgetformatstring(0,v_crt_row,'pivot_table','',3);
    if v_crt_max>v_max then
         v_max:=v_crt_max;
    end if;
    end loop;
    close c1;
    return v_max;
    end;
    --3. insert the rows in table_dest
    create or replace procedure pinsertrow
    v_max_rows numeric,
    v_all_concat varchar2,
    v_source_table_name varchar2,
    v_save_to_tablename varchar2
    is
    v_sql_string      varchar2(1000);
    l_all_concat     varchar2(1500);
    begin
    l_all_concat:=replace(v_all_concat,'.' ,',');
    v_sql_string:='('||l_all_concat||')';
    v_sql_string:=' insert into ' ||v_save_to_tablename
    ||' (' ||fgetformatstring(v_max_rows,l_all_concat,v_source_table_name,v_save_to_tablename,1)||')'||
    ' values'||v_sql_string ;
    execute immediate v_sql_string;
    end;
    --4.procedure to create dinamically <table_dest>
    create or replace procedure pcreatesavetable
    (v_table_source varchar2, v_save_to_table varchar2)
    is
    v_sql_string      varchar2(1000);
    already_exists exception;
    pragma exception_init(already_exists,-955);
    v_max numeric;
    begin
    --clear empty values;
    v_sql_string:='delete from ' ||v_table_source|| ' where length(all_concat)=0 or (all_concat) is null';
    execute immediate v_sql_string;
    v_sql_string:='';
    v_max:=fgetmaxitems;
         --create new table
         v_sql_string:=fgetformatstring(v_max,'all_concat', v_table_source,v_save_to_table,4);
    dbms_output.put_line( 'sql create : '|| v_sql_string);
    execute immediate v_sql_string;
    exception
         when already_exists then
    --delete old table
         v_sql_string:='drop table ' ||v_save_to_table;
         execute immediate v_sql_string;
         --create new table
         v_sql_string:=fgetformatstring(v_max,'all_concat', v_table_source,v_save_to_table,4);
    dbms_output.put_line( 'sql recreate final_table : '|| v_sql_string);
    execute immediate v_sql_string;
    end;
    --5.main procedure
    create or replace procedure pmainproc(v_save_to_table varchar2)
    is
    v_key_pivot      pivot_table.id%type;
    v_column_pivot     pivot_table.all_concat%type;
    v_max numeric;
    v_crt_row          varchar2(1600);
    cursor c2 is select y.id , y.all_concat
         from pivot_table y
    ;     --cursor upon pivot_table 
    begin
    v_max:=fgetmaxitems;
    if v_max <> 0 then
    --clear empty values;
    delete from pivot_table where length(all_concat)=0 or (all_concat) is null;
    --change all points with comma
    update
    (select x.id, x.all_concat from pivot_table x, pivot_table y where x.id=y.id) b
    set b.all_concat=replace(b.all_concat,'.', ',');
    -- padd the all_concat with ',null'
    update
    (select x.id, x.all_concat from pivot_table x, pivot_table y where x.id=y.id and
    fgetformatstring(v_max,x.all_concat,'pivot_table',v_save_to_table,5) <> v_max
    ) b
    set b.all_concat=b.all_concat || fgetformatstring(v_max,b.all_concat,'pivot_table',v_save_to_table,0);
    --remove last
    update pivot_table
    set all_concat= fgetformatstring(v_max,all_concat,'pivot_table',v_save_to_table,2)
    where fgetformatstring(v_max,all_concat,'pivot_table',v_save_to_table,5) = v_max;
    open c2;
    loop
    fetch c2 into      v_key_pivot, v_column_pivot;
    exit when c2%notfound;
    v_crt_row:=v_column_pivot;
    -- insert data in to final_table
    pinsertrow(v_max,v_crt_row,'pivot_table',v_save_to_table);
    end loop;
    close c2;
    end if;
    end;
    --create table_dest
    --the table_dest will be created automatically, so you need admin privilege to run that before compile pcreatesavetable :
    connect / as sysdba or connect system/password
    --grant create table to hr;
    --conne hr/hr;
    exec pcreatesavetable('pivot_table','table_dest');
    --add data to table_dest
    exec pmainproc('table_dest');
    set termout on
    select * from table_dest;
    Table created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    Function created.
    Function created.
    Procedure created.
    Procedure created.
    Procedure created.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    COL1 COL2 COL3 COL4 COL5 COL6 COL7 COL8 COL9 COL10
    12345 2829303132 234234 234234 234234
    67890 2324252627 234234 234234 234234 332545
    11121314 12345 234234 234234 234234 23432 32453245 345435 345435
    151617 67890 234234 234234
    1819202122 1112131415 234234 234234 234234 345435
    2324252627
    2829303132 234234 234234 234234 23432 32453245 345435 345435 4325435 345
    7 rows selected.

  • How to Map This into SAP

    Kindly guide me on how to model following scenarios into SAP;
    Please Guide
    Characteristics      
    Length -                         L
    Width -                         W
    Height -                         H
    Glue Flap-                         K1
    Overlap     -                   K2
    No of UPS CD-         K3
    No of UPS MD-         K4
    Side lay in MD 1-         K 5
    Side lay in MD 2-         k16
    Front Lay in CD-         K 6
    Backside Margin in CD-  K 7
    Lamination Margin         K 8
    Board Cost          K9
    Ink GSM                         K 10
    Ink Rate                         K 11
    Lamination 10 PET         K 12
    Price of PET         K 13
    Lamination Glue GSM    K 14
    Price of Glue          K 15
    Wastage allowance         K 17
    Board GSM         K 18
    Variable     formula
    V1     =(W + K2)/2
    V2     =(WHK2)
    V3     =(L+W)*2 + K1
    V4     =(WHK2)*K3
    V5     =((lW)*2K1)* k4
    V6     = if no of K3 > 3 then 10 else 5
    V7     =V4 + V6 + K6 + K7
    V8     =V5 + k5 + K16 +k8
    V9     =(2825.40.9)/V7
    V10     =(4025.40.88)/V8
    V11     =K3 * K4
    V12     =(V4 * V5) / V11
    V13     =V12 * K10 * K11
    V14     
    V15     =(V7 * V8) / V11
    V16     =1000/  V11* V7 * V8 / 1000000 * k18 / 1000
    V 17     = V16 * K9
    V 18     =( V13 + V17)*(100+k17)/100
    V 19     =( V13 + V17 + V18)
    V 20     = k12 * 1.4
    V 21     = V15 * V20
    V 22     = K13 * V21
    V 23     = k14 * V15
    V 24     =k15 * V23
    V 25     = (V19 +V22 + V24)* K17/100
    V 26     = V19 + V22 + V24 + V25

    Dear Dipak,
    Thanks a lot
    #1. I have a material "x"
    #2. Characteristics of "x", is described by L,W,H, k1 to k18
    #3. The attributes of these characteristics are dynamic
    #4. The parameters & costs are defined by formulae "V" series - V1 to V26
    #5. "Acceptance" of "x" is based on suitable end values from formulae - V1 to V26
    #6. Currently we guys are doing the modelling based excel sheets.
    #7. Same process, we want in SAP
    #8. So that, once attributes are frozen, the model or specs or bom is released for procurement / production
    I HOPE, I HAVE EXPLAINED CLEARLY.
    Welcome with healthy criticism
    Warm Regards
    Ramana

  • : how to convert string into uppercase string in java

    iam having string in lower case i need to convert it to uppercase using java.please help me

    s = s.toUpperCase ();See http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html.

  • How to convert String into Clob in Java?

    Hi all,
    from a form i have a
    String body = request.getParameter("body_name");
    i want to insert the string body to a clob field in oracle.
    string is from a textarea where the user enter html contents and i want to storeit as a clob in the database.
    can anybody help ?
    I have done with setCharaceteStream(), but it will take only 4000 characters. which suppose to take upto 4GB limit.
    So I want to set it as stmt.setClob(" some form by using String")
    Pls. help me if you can?
    thanks in advance
    Srikanth

    Have you tried using setString?
    null

  • How to separate string into x strings separated by #

    Hi there
    I have the following
    drop table metteordrer2;
    create table metteorder2 as
    select
        '#p1,1525,1864,1880,1957,2036,2042,2043, 1525,1864,1920,1942,1948,1952,1957, 1525,1863,1943,1960,2030,2042,2046,2047,#p2,1525,1864,1880,1957,2036,2042,2043, 1525,1864,1920,1942,1948,1952,1957, 1525,#p3,4,5,6' produkter
        from dual
    ;The output should be:
    ID     PRODUCTS
    P1    1525,1864,1880,1957,2036,2042,2043, 1525,1864,1920,1942,1948,1952,1957, 1525,1863,1943,1960,2030,2042,2046,2047
    p2    1525,1864,1880,1957,2036,2042,2043, 1525,1864,1920,1942,1948,1952,1957, 1525
    p3    p3,4,5,6I need to solve it using recursive subf. since the code should be converted to SS2008 (and this does not support connnect by).
    Could you assist me?
    regards
    Mette

    Hello again.
    I just needed a piece of quiteness at home .... then I got what I needed ... nothing like a warm meal and som quiteness :-)
    This is a working solution in an 11.2 g environment - ready for minor ajustments for SS2008 (just change substr and instr function calls):
    I have made a couple of change in var names, since the now reflect real names, ready to be put infront of a larger query.
    drop table metteordrer2;
    create table metteordrer2 as
    select
        '#p1,1525,1864,1880,1957,2036,2042,2043, 1525,1864,1920,1942,1948,1952,1957, 1525,1863,1943,1960,2030,2042,2046,2047,#p2,2525,1864,1880,1957,2036,2042,2043, 1525,1864,1920,1942,1948,1952,1957, 1525,1863,1943,1960,2030,2042,2046,2047,#p3,4,5,6,#p100,1' alle_linier
        from dual
    select * from metteordrer2;
    WITH   
    ----- split input op i id, og de efterflg. "rækker
    alle_linier (id, linie, tilbage_linier)    AS
    SELECT  SUBSTR (alle_linier , 2, INSTR ( alle_linier  || ',' , ',' ) - 2 )    AS id
        ,    SUBSTR ( alle_linier , INSTR ( alle_linier ,  ',' ) + 1, INSTR (alle_linier || '#','#',2 )-(INSTR ( alle_linier , ',' ) + 1))    AS linie
        ,    SUBSTR ( alle_linier , 1 + INSTR ( alle_linier || '#'  , '#' ,2 ) -1 )   AS tilbage_linier
    FROM    metteordrer2
    UNION ALL
    select  SUBSTR (tilbage_linier , 2, INSTR ( tilbage_linier  || ',' , ',' ) - 2 )    AS id
        ,    SUBSTR ( tilbage_linier , INSTR ( tilbage_linier  , ',') + 1, instr(tilbage_linier || '#','#',2 )-(INSTR ( tilbage_linier, ',' ) + 1))    AS linie
        ,    SUBSTR ( tilbage_linier , 1 + INSTR ( tilbage_linier || '#'  , '#' ,2 ) -1 )   AS tilbage_linier
    FROM    alle_linier
    WHERE    tilbage_linier is not null
    select id, linie from alle_linier;
    {code}
    It produced this:
    {code}
    p1     1525,1864,1880,1957,2036,2042,2043, 1525,1864,1920,1942,1948,1952,1957, 1525,1863,1943,1960,2030,2042,2046,2047,
    p2     2525,1864,1880,1957,2036,2042,2043, 1525,1864,1920,1942,1948,1952,1957, 1525,1863,1943,1960,2030,2042,2046,2047,
    p3     4,5,6,
    p100     1
    {code}
    Best regards
    Mette                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Maybe you are looking for

  • Combining a built in condition and PL/SQL

    Looking at the following post regarding combining error conditions is absurd: Nesting Button Conditions I want to only show a region when there are no validation errors AND combine this with another PL/SQL condition. APEX knows a validation error is

  • Generate JFaces jsp from xsd

    Hi all, I have an XML schema file, I'm able to generate all classes with sdo EMF project and now I want to generate jsp faces automaticaly . It'is possible to do that? If yes, why? Thank you in advance Mj

  • The mother not permited to up the vcore more than 1.65v

    Hi! The mother is not permited too pass the vcore 1.65v. if i put more the pc turn off ( 1.675v, 1.7v). i need put the fbs more than 118. if i put more the cpu need more volt. please help my !! I have the latest bios version. [Edited by Danny to make

  • Very slow first backup...

    A friend has a MacBook (C2D) and has just bought an iomega USB 2.0 external hard drive. Everything is plugged in and working its formatted (Journaled Case Sensitive(done automatically)), we have set Spotlight not to index the backup drive so we would

  • Layer 2 vs Layer 3

    We are looking at purchasing a new switch. What I am wondering is I want to buy a layer 3 switch, but only use it as a layer 2 switch for the time being. I want the option of using layer 3 functionality later, should we see the need. This way the equ