"The type of the expression must be an array type but it resolved to..."

I have a Customer class.
I have a CustomerDataHelper class that has a method that creates a Customer[][] , populates it with 10 Customers and returns it.
public static Customer[] getCustomerData(){
return new Customer[]{
new Customer(10 ,"Hoertz", "Richard", "123 Main St.", "San Antonio",
                              "TX", "78230"),
new Customer(20, "Smith", "John", "258 Austin Blvd", "Austin",
                              "TX", "78501"),
}               In main I'm calling the method in CustomerDataHelper, getCustomerData, and populating Customer[] cst.
public static void main(String[] args) {
Customer[] cst = getCustomerData();     
for(int i = 0; i < cst.length; i++){
int j = 0;
if (cst[i][j]== 20 || cst[i][j] == 50 || cst[i][j]== 80
|| cst[i][j]==100)
System.out.println(cst);
j++;
My problem is my if statement, it gives me the error message listed in my Subject line for each cst[][]. It resolves it just fine in the for statement and the stdout statement, but not the if statement.
Can someone please explain?

You declare cst as an array of Customers, but then you access it like
cst[i][j] as if it was a double array of somethings.
Possibly you mean something likecst.getId() == 20
where getId() is some method of the Customer that returns whatever
that number argument in the Customer constructor is.

Similar Messages

  • Why Var-arg type is required when we have a array type

    Hi,
    The var-arg is infact an array, So when we can pass the array object to the method and iterate through its elements , Why do we need var-arg and we need to rememeber the additional syntax that comes along with it.
    I am just wondering why var-arg is required?
    Thanks
    Deepak

    The var-arg is infact an array, So when we can pass
    the array object to the method and iterate through
    its elements , Why do we need var-argWe don't.
    and we need to
    rememeber the additional syntax that comes along with
    it.
    I am just wondering why var-arg is required?It's not. It didn't exist before Java 1.5. It's just syntactic sugar.

  • Expression must return the interface type in Transformation Step in BPM

    hi,
    We are getting below while activating the IP,
    Expression must return the interface type SI_Send_AA
    Expression must return the interface type SI_Get_AA
    No semantic errors found
    We have a Transformation Step in BPM,
    In OM, Source is SI_Send_AA and Target is SI_Get_AA
    Also Container variable points to  the same Abstract SI's.
    Few Thread's for Same are error are:
    Error in  BPM
    expression must return the interface type
    Transformation step in ccBPM scenario
    Error while compiling Business Process
    Even after checking these i am getting this Exception.
    Please Help!
    Thanks,
    Mayank

    Also Container variable points to the same Abstract SI's
    Are you sure that you are using Abstract Message Interfaces only and that these are referring to relevant container variables.
    Normally it happens that there is some mis-match between the message types/ interfaces that we use in the mapping and that we use in the BPM.
    If still not solved, then delete the Transformation step --> save --> activate......then again Edit the BPM to include the Transformation Step.
    Regards,
    Abhishek.

  • Expression must return the interface type

    <b>Dear XI experts,</b>
    My scenario is ;
    The input parameter for the RFC is send through a file and the response from the RFC comes into XI which is then written into a File (dummy). Finally I want to have Transformation(Message Mapping to IDoc) and send to Target system.
    The diagram of the following is shown below;
    http://photos1.blogger.com/blogger/3087/1595/1600/6.jpg
    I am getting Error in Transformation Step, <b>EXPRESSION MUST RETURN THE INTERFACE TYPE <Target message>. </b>
    <b>
    Pls advice, Anybody ??</b>

    Hi Faith,
    ->This error occurs when the interface mentioned in the interface mapping and in the container difference.
    ->Here in your case the target Message Interface in the Interface Mapping and the Interface of the container <b>modify</b> are different. Do check that.
    Hope this helps.
    Regards,
    Jesse.

  • The declaration of the type of this expression is incompleteor malformed

    error 320 at line 22 column 14
    the declaration of the type of this expression is incompleteor malformed
    error 0 at line 22,column 4
    statement ignored
    DECLARE
         v_value VARCHAR2(50);
         v_prod_id varchar2(100);
         v_prod_name VARCHAR2(100);
    BEGIN
         v_value:=:product.SIZE_LONG;
         v_prod_id:=:product.prod_id;
         v_prod_name:=:product.prod_name;
         IF v_value is not null then
         insert into product (prod_id,prod_name,DRESS_COMPOSITION,WASH_LABEL_INSTRUCTION,PRESSING_CHARGE,DYEING_CHARGE,
         EXTRA_CHARGE,FINISHING_CHARGE,ITEM_TYPE,TOTAL_FOB,SEASON_YEAR,INTERSTAT_CODE,RETAIL_EURO,WHOLESALE_EURO,
         RETAIL_USD,WHOLESALE_USD,RETAIL_GBP,WHOLESALE_GBP,CATEGORY)
         values (v_prod_id||'-L',v_prod_name||'-Long',:product.DRESS_COMPOSITION,:product.WASH_LABEL_INSTRUCTION,
         :product.PRESSING_CHARGE,:product.DYEING_CHARGE,:product.EXTRA_CHARGE,:product.FINISHING_CHARGE,:product.ITEM_TYPE,
         :product.TOTAL_FOB,:product.SEASON_YEAR,:product.INTERSTAT_CODE,:product.RETAIL_EURO,
         :product.WHOLESALE_EURO,:product.RETAIL_USD,
         :product.WHOLESALE_USD,:product.RETAIL_GBP,:product.WHOLESALE_GBP,:product.CATEGORY);
         LOOP
              insert into product_detail1(prod_id,item_code,item_name,qty,price,unit,avg_rate)
              values (:product_detail1.prod_id,:product_detail1.item_code,:product_detail1.item_name,
              :product_detail1.qty,:product_detail1.price,:product_detail1.unit,:product_detail1.avg_rate);
                   exit when NO_DATA_FOUND;
              NEXT_RECORD;
         END LOOP;
    elsif
         v_value is  null then
         delete from product where prod_id=(v_prod_id||'-L');
    end if;
    END;Please Guide
    why this errro comes
    Thanks And Regards
    Vikas Singhal

    i did that
         GO_BLOCK('product_detail1');
         FIRST_RECORD;
         LOOP
              insert into product_detail1(prod_id,item_code,item_name,qty,price,unit,avg_rate)
              values (v_prod_id||'-L',:product_detail1.item_code,:product_detail1.item_name,
              :product_detail1.qty,:product_detail1.price,:product_detail1.unit,:product_detail1.avg_rate);
              MESSAGE('KKKKKKKKKKKKK');
                   exit when :system.last_record = 'true';
                   NEXT_RECORD;
              END LOOP;
    AFTER THAT GIVING ERROR
    FRM: 40102 Record Must be Deleted Or enetered First
    the user requirement is
    i) First record is enetered
    master and detail
    after that he want same record for another record the only change is prod_code
    for LARGE,SMALL or SHORT etc.
    so i will create a button on form and a field with name size if the user choose the size and press the button then the one record is to insert in master detail and the prod_code is cahnged
    please guide
    Thanks And Regards
    vikas Singhal
    Edited by: vikas singhal on Aug 20, 2010 5:59 PM

  • In "LOOP ... WHERE ..." the line type of the table must be statically defin

    Hi All,
            I have written the code, for greater than (GJAHR) 2007 and restricted company codes ( table name = ZGLCCODE).
         Here I have written the following the code which is giving an error
    In "LOOP ... WHERE ..." the line type of the table must be statically defin
    ZGLCCODE Contains only restricted company codes.
    Code is as follows
    TABLES : ZGLCCODE. 
    DATA : LT_DATAPACKAGE TYPE TABLE OF DTFIGL_4.
    DATA : LS_PACKAGE TYPE DTFIGL_4.
    TYPES: BEGIN OF LS_TZGLCCODE,
           ZBUKRS type BUKRS,
            END OF LS_TZGLCCODE.
    DATA : LT_ITZGLCCODE TYPE LS_TZGLCCODE OCCURS 0 WITH HEADER LINE.
    DATA : LI_NUM TYPE I,
           LC_ZGJAHR TYPE BSEG-GJAHR VALUE '2007'.
    SELECT ZBUKRS INTO TABLE LT_ITZGLCCODE FROM ZGLCCODE.
    Note:  "C_T_DATA" dynamic structure = "DTFIGL_4" structure
    *-  Remove from the DataSource Company Code -
    LOOP AT C_T_DATA INTO LS_PACKAGE WHERE GJAHR GE '2007'.
    READ TABLE LT_ITZGLCCODE WITH KEY ZBUKRS = LS_PACKAGE-BUKRS.
    IF SY-SUBRC <> 0.
       APPEND LS_PACKAGE TO LT_DATAPACKAGE.
    ENDIF.
      CLEAR LS_PACKAGE.
    ENDLOOP.
    IF LT_DATAPACKAGE[] IS NOT INITIAL.
    DESCRIBE TABLE LT_DATAPACKAGE LINES LI_NUM.
    IF LI_NUM GT 0.
       REFRESH C_T_DATA.
       APPEND LINES OF LT_DATAPACKAGE TO C_T_DATA.
       REFRESH LT_DATAPACKAGE.
       FREE LT_DATAPACKAGE.
    endif.
    ELSE.
       REFRESH C_T_DATA.
    ENDIF.
    Please give me your valuable suggestions.
    Thanks
    Ganesh Reddy.

    Hi Ganesh,
    whatever you do, you can try like this:
    1 - any code posted should be wrapped in \
    then try something like this:
    field-symbols:
      <tabrec> type any,
      <field>   type any.
    sort ITZGLCCODE by bukrs.
    LOOP AT C_T_DATA ASSIGNING <tabrec>.
      ASSIGN component 'GJAHR' of structure <tabrec> to <field>.
      check <field> <= 2007.
      ASSIGN component 'BUKRS' of structure <tabrec> to <field>.
      READ TABLE LT_ITZGLCCODE WITH KEY ZBUKRS = <field>
        BINARY SEARCH TRANSPORTING NO FIELDS. "speed up the volume.
      IF SY-SUBRC 0.
        MOVE-CORRESPONDING <tabrec> to  LS_PACKAGE.   
        APPEND LS_PACKAGE TO LT_DATAPACKAGE.
      ENDIF.
    ENDLOOP.
    Regards,
    Clemens

  • The type of RETURNING parameter must be fully specified

    Hello,
    I want to program a locall class, a method to return a table of a local type:
    TYPES:
    BEGIN OF ty_line,
       id   TYPE char10,
       txt  TYPE string,
    END OF ty_line,
    ty_line_tt type standard table of ty_line.
    CLASS cl_html DEFINITION FINAL CREATE PRIVATE.
      PUBLIC SECTION.
        CLASS-METHODS parse importing fdata        type string_table
                            returning value(fmeta) type ty_line_tt.
    ENDCLASS.                    "cl_rep DEFINITION
    Got an error as in the subject. Does that mean that the table type MUST be declared in the ABAP dictionary?
    Regards,
    Michal

    Hello Michal
    Since your static method is PUBLIC you cannot use local types in its interface. The type of the RETURNING parameter must be public as well. Thus, you have to define it in the DDIC.
    Alternatively, you could switch to the more flexible EXPORTING parameters. Or you could return you itab as data reference, e.g.:
    *& Report  ZUS_LOCAL_CLASS                                             *
    REPORT  zus_local_class                                             .
    TYPES:
    BEGIN OF ty_line,
    id TYPE char10,
    txt TYPE string,
    END OF ty_line,
    ty_line_tt TYPE STANDARD TABLE OF ty_line.
    *       CLASS cl_html DEFINITION
    CLASS cl_html DEFINITION FINAL CREATE PRIVATE.
      PUBLIC SECTION.
        CLASS-METHODS parse IMPORTING fdata TYPE string_table
    *    RETURNING value(fmeta) TYPE ty_line_tt.
        RETURNING value(data_obj) TYPE REF TO data.
    ENDCLASS. "cl_rep DEFINITION
    *       CLASS cl_html IMPLEMENTATION
    CLASS cl_html IMPLEMENTATION.
      METHOD parse.
    *   define local data
        DATA:
          lt_line_tt    TYPE ty_line_tt.
        APPEND INITIAL LINE TO lt_line_tt.
        GET REFERENCE OF lt_line_tt INTO data_obj.
      ENDMETHOD.                    "parse
    ENDCLASS.                    "cl_html IMPLEMENTATION
    Regards
      Uwe

  • When I type an address in the location bar and hit Enter nothing happens. I must click the arrow button at the end of the location bar. How do I fix it so that the Enter key works?

    When I type a web address in the location bar and hit enter nothing happens. In order to go to the website I've typed in, I must click the arrow button at the end of the location bar. How do I make it so that hitting the enter key takes me to the web page.
    == This happened ==
    Every time Firefox opened
    == Since Firefox 4 Beta installed an update

    The AVG addon seems to have caused the problem for me. I had it disabled and everything worked. Then I updated to AVG 2011 and the problem occurred. It seems to have reenabled itself after the update.
    Just disabling it solved the problem.

  • Must have the same type and the same length

    hi experts,
    DELIVERY_PLANT  data type STRING    //from proxy class, can't be changed
          BEGIN OF ty_citem,
              article type matnr,
              werks   type werks,
           END OF ty_citem,
    LOOP AT it_items INTO lv_item.
        lv_citem-article = lv_item-article.
        lv_citem-werks = lv_item-DELIVERY_PLANT.
        APPEND lv_citem TO GT_citem.
        clear lv_citem.
      ENDLOOP.
    SELECT matnr werks
           from marc
           into table GT_marc
           for all entries in GT_citem
           where matnr = GT_citem-article  and werks = GT_citem-werks.
    error message here:When you use the addition "FOR ALL ENTRIES IN itab", the fields "WERKS"
    and "GIT_CITEM-WERKS" must have the same type and the same length.

    Hi,
    You know for statement FOR ALL ENTRIES in where clause data type and length should be match.
    As per my understanding ,here GT_citem-werks is a string. But you know data type of WERKS_D is char with lencth 4.
    Use the below select statement.
    SELECT matnr werks
           from marc
           into table GT_marc
           for all entries in GT_citem
           where matnr = GT_citem-article  and werks = GT_citem-werks+0(4).
    Thanks.
    Subhankar

  • PLS-00320: the declaration of the type of this expression is incomplete or malformed

    hello my friend please help
    I have this Error in PL /SQL procedure
    ORA-06550: line 6, column 12:
    PLS-00320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 6, column 12:
    PL/SQL: Item ignored
    where this is my procedure
    CREATE OR REPLACE PROCEDURE MOAMALAT."IO_EMP_REP"
    P_FROMDATE IN NUMBER,
    P_TODATE IN NUMBER,
    P_EMPID IN NUMBER,
    RCT1 OUT GLOBALPKG.RCT1
    AS
    BEGIN
    OPEN RCT1 FOR
    SELECT COUNT (I.CORRESPONDENCENUMBER) cont,
    EMP.FULLNAME empname,
    D.DEPARTMENTNAME deptname
    FROM MOAMALAT.IO_INCOMING i,
    MOAMALAT.IO_EMPLOYEES emp,
    MOAMALAT.IO_DEPARTMENTS d
    WHERE I.RECEIVEDBY = (SELECT EM.USERID
    FROM MOAMALAT.IO_EMPLOYEES em
    WHERE EM.EMPLOYEEID = P_EMPID)
    AND I.RECEIVEDBY LIKE EMP.USERID
    --and EMP.DEPARTMENTID=1900
    AND I.RECEIVEDBYDEPARTMENTID = D.DEPARTMENTID
    AND I.CORRESPONDENCEDATE BETWEEN P_FROMDATE AND P_TODATE
    GROUP BY EMP.FULLNAME, D.DEPARTMENTNAME
    UNION ALL
    SELECT COUNT (o.CORRESPONDENCENUMBER) cont,
    EMP.FULLNAME empname,
    D.DEPARTMENTNAME deptname
    FROM MOAMALAT.IO_OUTGOING o,
    MOAMALAT.IO_EMPLOYEES emp,
    MOAMALAT.IO_DEPARTMENTS d
    WHERE O.SENTBY = (SELECT EM.USERID
    FROM MOAMALAT.IO_EMPLOYEES em
    WHERE EM.EMPLOYEEID = P_EMPID)
    AND EMP.USERID LIKE EMP.USERID
    AND EMP.USERID LIKE O.SENTBY
    AND O.SENTBYDEPARTMENTID = D.DEPARTMENTID
    AND O.CORRESPONDENCEDATE BETWEEN P_FROMDATE AND P_TODATE
    GROUP BY EMP.FULLNAME, D.DEPARTMENTNAME;
    END;

    aymanhamdan01 wrote:
    thanks for replay
    sb92075
    this line 6:  RCT1 OUT GLOBALPKG.RCT1
    does Oracle (& you) know what datatype GLOBALPKG.RCT1 is?

  • I want to upgrade my old airport express to the new express. Can I just switch out the old for the new or must I delete the old network first and start from scratch with the new express?

    I want to upgrade my old airport express to the new express. Can I just switch out the old for the new or must I delete the old network first and start from scratch with the new express?

    It is not necessary to delete your old wireless networks first, but doing so may eliminate confusion. If you wish to do that, open System Preferences > Network, and select Wi-Fi from the left column. Click the Advanced... button, then select your old wireless networks and delete them with the "–" (minus) button. Make sure the "Remember networks this computer has joined" remains checked.
    OK then Apply.
    This prevents your Mac from searching for your previous network which will no longer exist.
    A new Express creates an open wireless network that you must select before you can configure it. It appears in your Wi-Fi menu like this:
    Select it. AirPort Utility will load and walk you through its configuration.
    Edit: If you are really using OS X 10.5.1 as shown in your profile, the above screenshot is not applicable. Instead, select the network called "Apple network nnnnnn" and then launch AirPort Utility.

  • HT201209 I bought a movie with the digital copy and it gives me option to redeem it with iTunes, but when I type in the redeem code it shows a message saying: you must insert your digital copy dvd in the computer in order to redeem this code" . The dvd is

    I bought a movie with the digital copy and it gives me option to redeem it with iTunes, but when I type in the redeem code it shows a message saying: " you must insert your digital copy dvd in this computer in order to redeem this code" . The dvd is in. WTH? This is especially with FOX movies, I never have trouble with Universal Picture movies.

    Thanks for your reply, but you might have misunderstood it a bit. I'm NOT trying to buy a movie. ****, I'm not even in the actual Apple Store, when this happens I'm in the library not the Store part of iTunes.
    To clarify - I have purchased a physical copy of a movie which came with another physical copy which contains the digital copy. The digital copy is on the DVD, all I need is just to transfer this file to my iPod Touch, for example, I'm not trying to download it from the store or repurchase it and it's not any gift code that I've received, the digital copy is on the disc. This is the first time ever that I've purchased something on a disc and I'm not allowed to access it because the disc hasn't been purchased within my country.
    So again - I'm not attempting any purchase or download any purchased digital copy - it's on a DVD I own physically so... why is even the region of my Store relevant, the code I enter is (as I assume) just supposed to check if it's a legal genuine copy (which it is, as I've said - there are 6 discs in the pack: 3 movies on 3 Blu-rays and 3 DVD containing these digital copies of them). If I own it, I think that's proof enough that I have the right to use it. I just don't get it. I fully agree with you and understand your point if there was any purchase going on here, but it's not, it's just - I put a disc into my computer and I can't access it

  • Relate the types to each expression

    Hi guys,
    What I want to do is to relate the types to each expression in a Java program. I am using Java Tree Builder or JavaCC to create parser for any java program. Then I want to analysis the security of code. So how to relate the types of each expression in program, once I get the parser of program.
    Thanks in advanced. Your help will be greatly appreaciated.

    Hi,
    Please try this:
    /Me/Events?$select=Subject,Start,End,LastModifiedTime&$filter=LastModifiedTime ge '2014-09-18'
    More information:
    Filter REST call on SharePoint with DateTime value
    http://itblog.wolthaus.net/2011/12/rest-filter-datetime/
    SharePoint REST interface with operators and functions
    http://adicodes.com/sharepoint-rest-interface-with-operators-and-functions/
    Best regards
    Dennis Guo
    TechNet Community Support

  • Loop Where The row type of the table must be statically definied

    Hi Experts,
    Actually i am working on dynamically generated the funtion module.
    It has four input parametrs.. IT_TAB_REFERENCE - Table reference, IS_STR_REFERENCE is Structure Reference and
    two more fields are input fields.. one contains employee reference and other is calmonth..
    Getting row mismatch and please find the code below. error is at the loop statement.
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(IT_TAB_REFERENCE) TYPE REF TO  DATA
    *"     REFERENCE(IS_STR_REFERENCE) TYPE REF TO  DATA
    *"     REFERENCE(ID_SOURCEFIELD1) TYPE REF TO  DATA
    *"     REFERENCE(ID_SOURCECALMONT1) TYPE REF TO  DATA
    *"  EXPORTING
    *"     REFERENCE(LS_OUTTAB_REFERENCE) TYPE REF TO  DATA
    *"  CHANGING
    *"     REFERENCE(CD_SOURCEFIELD1) TYPE REF TO  DATA
    *"     REFERENCE(CD_SOURCEFIELD2) TYPE REF TO  DATA
      FIELD-SYMBOLS:<it_tab_reference> TYPE ANY TABLE,
                    <ls_str_reference> TYPE ANY.
      FIELD-SYMBOLS: <id_sourcefield1> TYPE   /bi0/oiemployee,
                    <id_sourcecalmont1> TYPE /bi0/oicalmonth.
      DATA:          ld_calday                TYPE  sy-datum.
      CONSTANTS:     lc_day                   TYPE  char2 VALUE '01'.
      ASSIGN it_tab_reference->* TO <it_tab_reference>.
      ASSIGN is_str_reference->* TO <ls_str_reference>.
      ASSIGN id_sourcefield1->* TO <id_sourcefield1>.
      ASSIGN id_sourcecalmont1->* TO <id_sourcecalmont1>.
      IF <it_tab_reference> IS ASSIGNED.  " data in internal table?
    *... Get the First Day Of the Month
        CONCATENATE <id_sourcecalmont1> lc_day INTO ld_calday.
    *... Calculate the Last Day Of the Month
        CALL FUNCTION 'SLS_MISC_GET_LAST_DAY_OF_MONTH'
          EXPORTING
            day_in            = ld_calday
          IMPORTING
            last_day_of_month = ld_calday
          EXCEPTIONS
            day_in_not_valid  = 1
            OTHERS            = 2.
    *... Get the Date to Salary Group using the employee and calday.
        LOOP AT <it_tab_reference>
             ASSIGNING <ls_str_reference>
             WHERE /bic/emp_dspec = <id_sourcefield1>  AND
                   datefrom      LE ld_calday          AND
                   dateto        GE ld_calday.
        ENDLOOP.
        IF sy-subrc EQ 0.
          GET REFERENCE OF <ls_tab_reference> INTO ls_outtab_reference.
        ENDIF.
      ENDIF.  " it_zhrbi_th_emp_dspec[] IS NOT INITIAL
    Thanks in advance,
    Sunil

    Hi,
    As stated in the Help :
    Dynamic specification of a component through bracketed character-type data objects is not possible.
    Since it is possible through READ TABLE statement, I would advise changing your LOOP logic by a DO. READ TABLE ... ENDDO one. (not very pleasant but not much choice, isn't it?)
    Best regards,
    Guilllaume

  • What type of data I must use in the column (SQL)?

    Hi Guys,
    I have a little bit problem with this value (2_1232_123). I don´t know what type of value can be. This value is the result of the concatenation of three integer and "_".
    The code I have is:
    While readerCodeAccount.Read
    Code_Account = readerCodeAccount.Item(0)
    End While
    Try
    IDTextBox.Text = Code_Company & "-" & Code_Account

    varchar(20) 
    But  why storing it in the database if you can generate the concatenation on the fly in the SELECT statement
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

Maybe you are looking for

  • Editing in Adobe Camera Raw

    Is it possible, when setting Photoshop Elements as the external editor in iPhoto, to have Raw files open in Adobe Camera Raw?  I tried this for a friend today and the Raw file opened in the Editor Window.  We worked around this by first exporting the

  • My Business Catalyst Site Manager only has TWO menu items !

    I need to build Secure Zone, and sure can't do it without a Secure Zone menu item in Site Manager. I do NOT need a discussion !  I need someone to look at my Dashboard and figure out why I have no options !  Talking doesn't help ... I thought for the

  • How to put the Motorola NVG589 in 'bridge mode' (or as close as you can).

    OverviewMost people don't need advanced features that personally owned routers offer and will be just fine using the NVG589 and turning off their personally owned router.  But if you're like me (and I know I am!) then you are probably reading this th

  • Requesting new methods for Spry.Utils. Notifier

    I'm building a quiz application with Spry that is based on a frameset. The main DataSet is contained in the frameset page, and it swaps in different question type templates in a child frame. Each of these templates creates NestedXMLDataSets and has S

  • Parameter

    Hi all, I want a selection screen having 3 input boxes in one line and having one title. The first will hold the date,2nd will hold the month and the third will hold the year in 4 digit. again at the time of first display, it will show the 1st day of