Adding values to multiple_tables

Hi I am puzzled.
I am building a vi such that each set of values are added to each table. However, when I connect to 0 value to row input node of insert array function. In the end the tables are filled with empty rows between filled rows. So If I added incrementing values,  they are filled correctly, but I want the latest values to be updated at the top cell in the tables.
Would appreciate your help.
Here's the attached. (using labview 7.1)
Clement
Attachments:
adding2multiple_tables.vi ‏90 KB

hi, an build array function is removed. see diagram.
PS: not sure your objective. So, just did to achieve what your do not want i.e. empty row(s). And, hope it make sense.
Ian F
Since LabVIEW 5.1... 7.1.1... 2009, 2010
依恩与LabVIEW
LVVILIB.blogspot.com
Attachments:
adding2multiple_tables_mod.vi ‏90 KB

Similar Messages

  • "Date Added" values changed to be identical in some folders

    Hi,
    I normally sort my work files (mostly .ppts) by "date added" to help me keep track, this usually works fine. I have the date added column showing in Finder and set the Folder Options to sort by date added.
    I noticed today that in some folders (but not all) the date added value has been re-set by the system to be a random date (eg 30 Jan 2015 15:28 for one folder), and the date and time added is the exact same for all the files. Obviously this means I can't sort them anymore. I was wondering why this has happened and if it can be fixed as it's a really annoying and potentially serious issue.
    Running Yosemite 10.10.2 on a mid-2012 MBP.
    Thanks

    Hi Subha,
    You can assing default values to the Variables...Fiscal Year2008; Version100...etc. so that the user need not input all the variables.
    I am not sure whether you can assign a function--"on selection" of variables.  For better control It would be prudent to advise users to execute a function (if need be embed a SAVE function with in the sequence) on press of a button.
    Regards
    Srinivas

  • Remove row from table when adding values to another table

    hi am adding value programticaly how can i remove the row i just  add from the table
    this is how am adding value
    public void addMember(javax.faces.event.ActionEvent actionEvent) {
    List<String> tempTable = new ArrayList<String>();
    //Code to get the bindings for TargetVO :
    RowKeySet selectedEmps = getEmpTable().getSelectedRowKeys(); 
    Iterator selectedEmpIter = selectedEmps.iterator();
    DCBindingContainer bindings =
    (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding empIter = bindings.findIteratorBinding("UserDetailsViewVO1Iterator");
    RowSetIterator empRSIter = empIter.getRowSetIterator();
    while(selectedEmpIter.hasNext()){
    Key key = (Key)((List)selectedEmpIter.next()).get(0);
    Row currentRow = empRSIter.getRow(key);
    onRowCreate(currentRow);
    boolean b = selectedEmps.remove(currentRow);
            i what to clear the row i just selected from the table
    AdfFacesContext.getCurrentInstance().addPartialTarget(empTable);
    // empTable
    public void onRowCreate( Row currentRow ) {
    BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
    //access the name of the iterator the table is bound to.
    DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("addmemberBeanIterator");
    //access the underlying RowSetIterator
    RowSetIterator rsi = dciter.getRowSetIterator();
    //get handle to the last row
    Row lastRow = rsi.last();
    //obtain the index of the last row
    int lastRowIndex = rsi.getRangeIndexOf(lastRow);
    /*check if the user is added already*/
    /*OperationBinding oper2 = (OperationBinding) bindings.get("check if user exists method binding");
    oper2.getParamsMap().put("attributeName1", uniqueUserAttributeValue);
    Object ret = oper2.execute();*/
    //create a new row
    Row newRow = rsi.createRow();
    String f = (String)currentRow.getAttribute("Firstname");
    String s = (String)currentRow.getAttribute("Surname");
    String u = (String)currentRow.getAttribute("Username");
    String n = (String)currentRow.getAttribute("Emailaddress");
    // String orgid = (String)currentRow.getAttribute("Organisationid");
    newRow.setAttribute("firstname", f);
    newRow.setAttribute("surname", s);
    newRow.setAttribute("name", u);
    newRow.setAttribute("emailaddress", n);
    // newRow.setAttribute("Organisationid1",orgid);
    //initialize the row
    newRow.setNewRowState(Row.STATUS_INITIALIZED);
    //add row to last index + 1 so it becomes last in the range set
    rsi.insertRowAtRangeIndex(lastRowIndex +1,  newRow);
    //make row the current row so it is displayed correctly
    rsi.setCurrentRow(newRow); 
    System.out.println("Username " + u);
    System.out.println("firstname " + f);
    System.out.println("surname " + s);
    System.out.println("email " + n);
    // refereshpage();
    // return null;
    am in jdevloper 11.1.1.6.0
    my table is
    public void onRowCreate( Row currentRow ) {
    BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
    //access the name of the iterator the table is bound to.
    DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("addmemberBeanIterator");
    //access the underlying RowSetIterator
    RowSetIterator rsi = dciter.getRowSetIterator();
    //get handle to the last row
    Row lastRow = rsi.last();
    //obtain the index of the last row
    int lastRowIndex = rsi.getRangeIndexOf(lastRow);
    /*check if the user is added already*/
    /*OperationBinding oper2 = (OperationBinding) bindings.get("check if user exists method binding");
    oper2.getParamsMap().put("attributeName1", uniqueUserAttributeValue);
    Object ret = oper2.execute();*/
    //create a new row
    Row newRow = rsi.createRow();
    String f = (String)currentRow.getAttribute("Firstname");
    String s = (String)currentRow.getAttribute("Surname");
    String u = (String)currentRow.getAttribute("Username");
    String n = (String)currentRow.getAttribute("Emailaddress");
    // String orgid = (String)currentRow.getAttribute("Organisationid");
    newRow.setAttribute("firstname", f);
    newRow.setAttribute("surname", s);
    newRow.setAttribute("name", u);
    newRow.setAttribute("emailaddress", n);
    // newRow.setAttribute("Organisationid1",orgid);
    //initialize the row
    newRow.setNewRowState(Row.STATUS_INITIALIZED);
    //add row to last index + 1 so it becomes last in the range set
    rsi.insertRowAtRangeIndex(lastRowIndex +1,  newRow);
    //make row the current row so it is displayed correctly
    rsi.setCurrentRow(newRow);  
    System.out.println("Username " + u);
    System.out.println("firstname " + f);
    System.out.println("surname " + s);
    System.out.println("email " + n);
    // refereshpage();
    // return null;

    hi,
    make the table selection single and use this links 4 ur task.
    http://www.baigzeeshan.com/2010/06/deleting-multi-selected-rows-from-adf.html
    http://deepakcs.blogspot.com/2013/01/ejb-dc-deleting-multi-selected-rows.html
    https://forums.oracle.com/thread/2534813
    https://blogs.oracle.com/jdevotnharvest/entry/iterating_selected_rows_in_an
    txs

  • Error message when adding values to another table

    hi i have a situation where am adding values from a view to a bean,my use case is i have a list of user in my view where am adding them to my bean by clicking the button,but now i what to validate when adding a user in such a way that if i added a use in my bean and i try to add that user again in current selection i must have validating error saying the user have been added already my code is
    Edited by: adf0994 on 2012/12/13 2:19 PM

    looks like you should have asked this in the ADF-forum...
    JDeveloper and ADF
    Why don't you simply configure the user name beeing unique in your entity?
    ADF would raise an exeption for you.
    public String onRowCreate( Row currentRow ) {
    return null;
    }Don't do that.
    returning a literal null is almost ever a mistake! In this certain case you should declare you methods return type as void and ommit the return statement.
    bye
    TPD

  • Adding values for a single customer

    Hi Everybody,
    I am facing a programming issue. I have to do something like this:
    For a each customer, for all open items for that customer, I have to add the amount due at every period in aging in Accounts receivable. So for example, if I have two customers: A and B and
    A has 5 open items
    B has 3 open items
    for each open item there is an amount due for both customers. So what i have to do is add for A 1+2 = amount 1.
    amount 1 + 3 = amount 2, amount 24 = amount 3, amount 35 = amount 4.
    Similarly for B also I have to do the same thing. Right now my amount are getting added up into one single value at each line of the table. So for all customers it is just getting added in every row of the table and not seperately for every new customer.
    Can somebody suggest something or give some example?
    Please help.
    Thanks & regards,
    AM

    I'm not sure I understand what you are trying to do. Is it something like:
    REPORT ztest.
    TABLES: bsid.
    PARAMETERS p_bukrs LIKE bsid-bukrs.
    SELECT-OPTIONS s_kunnr FOR bsid-kunnr.
    DATA: BEGIN OF itab OCCURS 0,
            bukrs LIKE bsid-bukrs,
            kunnr LIKE bsid-kunnr,
            under_30_amt LIKE bsid-dmbtr,
            under_60_amt LIKE bsid-dmbtr,
            under_90_amt LIKE bsid-dmbtr,
            over_90_amt  LIKE bsid-dmbtr,
          END   OF itab.
    DATA: under_30_date LIKE sy-datum,
          under_60_date LIKE sy-datum,
          under_90_date LIKE sy-datum,
          over_90_date  LIKE sy-datum.
    under_30_date = sy-datum - 30.
    under_60_date = sy-datum - 60.
    under_90_date = sy-datum - 90.
    over_90_date  = sy-datum - 30.
    SELECT bukrs kunnr bldat dmbtr
      INTO CORRESPONDING FIELDS OF bsid
      FROM bsid
      WHERE bukrs = p_bukrs
        AND kunnr IN s_kunnr.
      CLEAR itab.
      MOVE: bsid-bukrs TO itab-bukrs,
            bsid-kunnr TO itab-kunnr.
      IF bsid-bldat > under_30_date.
        MOVE bsid-dmbtr TO itab-under_30_amt.
      ELSEIF bsid-bldat > under_60_date.
        MOVE bsid-dmbtr TO itab-under_60_amt.
      ELSEIF bsid-bldat > under_90_date.
        MOVE bsid-dmbtr TO itab-under_90_amt.
      ELSE.
        MOVE bsid-dmbtr TO itab-over_90_amt.
      ENDIF.
      COLLECT itab.
    ENDSELECT.
    LOOP AT itab.
      WRITE: /001 itab-bukrs,
                  itab-kunnr,
                  itab-under_30_amt,
                  itab-under_60_amt,
                  itab-under_90_amt,
                  itab-over_90_amt.
    ENDLOOP.
    <i>Caveats</i>
    I'm not sure what date you should use for aging. I used the document date. Maybe it's the baseline date. Maybe it's something else.
    Collect is inefficient. You might want to do it another way.
    I may be way off base - you may be doing something else entirely.
    Rob

  • Adding  values in query for like materials.

    Greetings Gurus,
    I am very new to ABAB. I recently made a query attached to an infoset, that lists the amount received from a purchase order and compares the amount that was ordered (overdelivery allowed). With this I added a custom field and and in the Extras/Code tab I added (for "Record Processing")
    IF MSEG-BPMNG > EKPO-MENGE.
    ZCUSTOMF = 'OVERDELIVERED'.
    ELSE.
    CLEAR CUSTOMFIELD.
    ENDIF.
    This compares the amount received vs the amount ordered and gives a new field value if overdelivery occured. However it occurred that there may be multiple batches of the same material when received. When this happens the query displays multiple lines (same material document number) with each amount and does not add the value of the different batches of the same material. Is there any additional code that could be added that  'When the same material document number and same material' appear more than once to add the quantity received together and view it on one line? Any kind of help (especially with ABAP explanations) at all is greatly appreciated.
    Thank You

    Hi,
    You have to Loop at the itab which you are processing in the same code  tab with looping at itab at the material document you are processing at that moment. then sum up the Qty and Amount at the end of the loop and then check the amounts and then update the custom field for that PO or material document.
    As this code will be repeated for all the items of the document every time when you loop for that specific document just check whether the custom field is empty or not . Process the loop if empty only. As if i t is not empty then it is understood that thsi item has been processed earlier.
    Regards, Shakeel.

  • Adding values to XI Soap Header

    Hi All,
    We have scenario, Soap to RFC. We are generating the wsdl for the ICO. We want the end system to send some values in the soap header(XI Soap header). We have used the keep header in the sender soap communication channel and added the value to the variable binding. When we generate the wsdl, there is no header in wsdl. We can only get the body.
    Kindly let us know if what we are doing is correct.
    Also please let us know how it can be  done.

    Hi,
    We want the end system to send some values in the soap header(XI Soap header). We have used the keep header in the sender soap communication channel and added the value to the variable binding. When we generate the wsdl, there is no header in wsdl. We can only get the body.
    Checking the Keep Header option will only include the XI header as part of the response message. It will not be included in the request message. The variable binding allows you to place three variable headers (HTTP Headers) that you can use in dynamic config, it will not populate the SOAP Header at all.
    If there is information in the SOAP Header that you need, you might as well run it in noSOAP mode by checking Do Not Use SOAP Envelope in your sender CC.
    Regards,
    Mark

  • Added values in Matrix Footer

    Hi To All,
    How to display the sum of values in matrix footer.For example,
    Inventory -
    >  Goods Receipt
    Here, the values of the TOTAL column will got added and displayed in the FOOTER of the MATRIX.
    Same like that i want to add some values and that values should be displayed in matrix footer.. How to do this..?

    There are 2 ways how to achieve it:
    1. if the matrix is filled with query, use UNION with sum() clause
    2. or use edittext under matrix and set there sum values - app. 6 months ago here was some example with code how to achieve it and link it to matrix (columns width, ...)

  • Adding  values in same field inside loop

    Dear Experts,
    suppose in my o/p i am displaying material number and its value:
    material No:      Qty
    matnr                1000
    matnr                2000
    matnr                3000
    matnr                4000
    matnr                5000
    Now I want my third field  ( SUM ) such that the value displayed should
    get added to the next value displayed, till the loop ends for each particular material.
    material No:     Qty           Sum
    matnr               1000        1000     " (1000)
    matnr               2000        3000     " (1000 + 2000)
    matnr               3000        6000     " (1000 + 2000 + 3000)
    matnr               4000      10000     " (1000 + 2000 + 3000 + 6000)
    matnr               5000      15000     " (1000 + 2000 + 3000 + 6000 + 10000)
    Actually my requirement is :
    First I need to get  material and Quantity from MSEG table 
    then I need to compare this material and quantity in MBEW table  to get the total stock
    particular material.
    so my condition is like :
    if i_mseg~sum GE mbew-lbkum.
      delete i_mseg.
    endif.
    Please advice.

    Hi Karthik ,
    Pls try this.
    REPORT  ztest.
    TYPES: BEGIN OF ty_mseg,
           matnr TYPE mseg-matnr,
           menge TYPE mseg-menge,
           sum TYPE mseg-menge,
           END OF ty_mseg.
    TYPES : BEGIN OF ty_mbew,
            matnr TYPE mseg-matnr,
            lbkum TYPE mbew-lbkum,
            END OF ty_mbew.
    DATA : it_mseg TYPE TABLE OF ty_mseg,
           wa_mseg TYPE ty_mseg,
           it_mbew TYPE TABLE OF ty_mbew,
           wa_mbew TYPE ty_mbew.
    DATA : sum TYPE mseg-menge.
    START-OF-SELECTION.
      wa_mseg-matnr = '1111'.
      wa_mseg-menge = '1000'.
      APPEND wa_mseg TO it_mseg.
      wa_mseg-matnr = '1112'.
      wa_mseg-menge = '1000'.
      APPEND wa_mseg TO it_mseg.
      wa_mseg-matnr = '1113'.
      wa_mseg-menge = '1000'.
      APPEND wa_mseg TO it_mseg.
      SELECT matnr lbkum
                FROM  mbew INTO TABLE it_mbew
                    FOR ALL ENTRIES IN it_mseg
        WHERE matnr = it_mseg-matnr.
      LOOP AT it_mseg INTO wa_mseg.
        READ TABLE it_mbew INTO wa_mbew WITH KEY matnr = wa_mseg-matnr.
        CHECK sy-subrc = 0.
        IF wa_mseg-menge LT wa_mbew-lbkum.
          ADD wa_mseg-menge TO sum.
          wa_mseg-sum = sum.
          MODIFY it_mseg FROM wa_mseg.
          WRITE : / wa_mseg-matnr,wa_mseg-menge,wa_mseg-sum.
        ELSE.
          DELETE it_mseg FROM wa_mseg.
        ENDIF.
      ENDLOOP.
    I just hard-coded some materials for checking with the logic.You can get materials list directly from mseg as per your selection criterian right!

  • Adding values to pracing condition

    We have pricing procedures and few pricing conditions in it. Let say that last two pricing conditions are ZPC1 ZPC2.
    These pricing conditions are applied on positions level.
    What I need to do is to calculate sum of values from ZPC1 for all positions. For last position, when this sum is lower than 500euro I need to add difference between 500euro and calculated sum into ZPC2. From business point of view, this is needed, because value of order can't be lower than 500 euro. If it so, costs of transportation are added into value of order into last position.
    Q: What should I do in pricing conditions/pricing procedures to achieve aforementioned behavior?

    See mininum order value at help.sap.com This explains the concept of what you are trying to do
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/de/7a8534c960a134e10000009b38f83b/frameset.htm

  • Manually added Values in the info-object

    Hi there,
    I have manually added 1 value in the info-object.
    But if I view in the P table I am not able to find it.
    But I am able to find this value in the SID table.
    When I do my dropdown in the query selection screen, it does not show me this value what I manually created and when I just enter this value it gives me error as invalid value.
    Please advise.
    Many Thanks,
    Kate

    Hi AHP,
    I have done both of them.
    But still the same result ? Any further suggestion ?
    kind regards
    Kate

  • Adding value to filter column as parameter while navigating to 2nd report

    Hi
    I have a report and I want to navigate to another report in Answers.
    There is a filter column for the 2nd report whose
    value I can't choose from the calling report, because it is a hidden indicator.
    Is there any way I can add this hidden indicator with a hard-coded value to the
    end of the navigation call (for the 2nd report)?
    eg. call_report XYZ indicator='Y'.
    Many thanks for any ideas.
    - Jim

    Hi,
    I have used below solution to pass various indicators (columns were not present in the parent report) to same drill report. Hope it helps you.
    The idea here is to override the function PTMNav which gets executed when we click on a column in pivot, which drills to another report passing the remaining column's values and filters.Follow the below steps to achieve this.
    * Open the request and add a Static View to the report (compound view).
    * In this view, check the option 'Contains HTML Markup' and add the below code. (The function PTMNav is exactly the same as the orginial one with just one additional line added to it)
    <script language="javascript">
    var colName = '"TableName"."ColumnName"'; // Add your ColumnDefinition within single quotes
    var colValue = 'valueToBePassed';
    function PTMNav(scttbl, row, r, tNavSetup, nType, evt, bInPreview)
       var tInNavInfo = new NavigateInfo();
       // add all the row values
       var vRValues = PTRGetValues(scttbl,row,scttbl.vRows);
       for(var n = 0 ; n < scttbl.yLayers.length ; ++n)
          // might be dealing with totals, look for null layers
          if (null == scttbl.yLayers[n])
             continue;
            // if a measure, do not add the value
            if (null != scttbl.vColumnAggs &&
                null != scttbl.vColumnAggs[scttbl.yLayers[n]] &&
                scttbl.vColumnAggs[scttbl.yLayers[n]])
               continue;
          tInNavInfo.AddValue('eq', scttbl.vFormulas[scttbl.yLayers[n]], vRValues[n]);
       // add all the column values
       var vCValues = PTCGetValues(scttbl,r,scttbl.vColumns);
       for(var n = 0 ; n < scttbl.xLayers.length ; ++n)
          // might be dealing with totals, look for null layers
          if (null == scttbl.xLayers[n])
             continue;
            // if a measure, do not add the value
            if (null != scttbl.vColumnAggs &&
                null != scttbl.vColumnAggs[scttbl.xLayers[n]] &&
                scttbl.vColumnAggs[scttbl.xLayers[n]])
               continue;
          tInNavInfo.AddValue('eq', scttbl.vFormulas[scttbl.xLayers[n]], vCValues[n]);
       /** START custom code **/
      tInNavInfo.AddValue('eq',colName,colValue);     
       /** END custom code **/
       // let PTNavigate add just the page + section values and navigate
       PTNavigate(scttbl, tNavSetup, (new Array()), (new Array()), -1, evt, tInNavInfo, bInPreview);
       return false;
    </script>* The code above contains the overriden PTMNav function. Here on line 2 and 3 specify the column Name in colName variable and column Value in colValue variable which needs to be passed to the navigated report.Ensure you have this column as 'is prompted' in the drill report.
    Now, along with other filters and column's value, this column's value will also be passed to the drill report.
    Please let me know if this solution works for you.
    Thanks

  • Help in adding values to particular vector in hasmap

    Hi there,
    I have a question. I need to create a hashmap< Object, vector<Integers>> so that each object has vector of Integers associated with it. But I need to add the Integers to this hashmap in such a way that each Integer gets added to the vector of its particular Integer. For example,
    From list of object { 1d, 3d, 4c, 7c, 8c, 9c, 2f, 10g, 11a, and so on}
    Object c will have integers 4,7, 8, Object d will have integers 1,3,9, Object a will have 11 and so on. I will need to add the Integers to its respective hasmap vector at runtime. That is I need to create
    <c, <4,7,8>> and <d, <1,3,9>> and so on.
    Is there any way of doing that?
    Thanks a lot,
    priyanka

    Use ArrayList instead of Vector. Vector is a deprecated class, and ArrayList is it's recommended replacement.
    To store an int with it's associated Object:
    Get the List value associated with the key Object
        If the List is null
            There's no List mapped to that Object yet, so create new List, add int to it, and put the Object and new List in the map.
        If the List is not null
            Add the int to the List

  • Switch and IIF Functions keep adding values.

    Help,
    My Report is adding my values with both Switch and IIF Functions.
    I have reworked the below Switch expression as an IIF Function, I have used Null and IsNothing in replace of "0", I  have replaced True with Not(Fields!January2014.Value =
    "0"). But Unfortunately, no matter what I do in the below syntax it adds my values. The goal is to run a projection either from this
    year's numbers or last year's, so if this year's numbers have not been created or equal "0" to use last years. Unfortunately, when there is a this year and there is a last year it is adding those two values. Any ideas? Please provide input.
    Thank you,
    =Switch(Fields!January2014.Value =
    "0",CDbl(Fields!January2013.Value),True,CDbl(Fields!January2014.Value))

    What does your IIf statement look like?
    =IIf(Fields!January2014.Value="0",CDbl(Fields!January2013.Value),CDbl(Fields!January2014.Value))
    How is the January2014 field created in the dataset? And the January2013 field?
    "You will find a fortune, though it will not be the one you seek." -
    Blind Seer, O Brother Where Art Thou
    Please Mark posts as answers or helpful so that others may find the fortune they seek.

  • Adding value node to context

    Hi,
    I need to use <crmic:tableview> and all my output values are coming from a function module which takes input from BOL. None of the results that needs to be shown exists in BOL layer.
    For example, by passing ibase to a function module, I get values and I need to show them in a table. As each column of the table requires different event based on user action, I think <crmic:tableview> is the best chance than using <htmlb:tableview>.
    If any one of you have worked on similar area or do have code sample, could you please help me out.
    Thanks and Regards,
    Raju

    Thanks Ankur,
    1) In one of the field quantity is entered and then it will fire a FM and gets back with a message based on the business logic if the quantity is okay or not. Based on the reply, traffic signals will be shown against each line item.
    2) In another field, F4 help needs to be provided.
    3) In another field, the cell color changes based on the an indicator available against each line item.
    4) And there are couple of values and logic based cell display.
    Also it helps me in another view where I need to show TableTree display again with business logic. I know that SAP provided 2 SAP standard classes, but the problem is they always look for BO collection and I need to know the exact methods I need to hack.
    Thanks and Regards,
    Raju

Maybe you are looking for

  • IPods crash and can't back up library - HELP

    I have had an iPod mini for 1.5 years. My spouse got an iPod (30GB video) recently. When we switch between them to update songs from one library, the iPods crash and have to be reset (even that takes a few tries following instructions on iPod help).

  • Ipad Mini ( w/o retina) wifi problem

    I am facing this problem since I bought Ipad Mini , the wifi shows connected  and signal is great  too but still can't access internet . Reconnecting works but it's really frustrating. Plss help.

  • How to use?

    Any very basic tutorials for Logic Pro X? I just got it but I have no idea where to even start on how to use this program do u need a midi controller? can u just use the mouse any maybe keyboard? or maybe iPhone,iPad? to input the sounds? I dont want

  • IPhoto wont import photos from iphone

    I'm trying to import photos from my 32GB iPhone 3 into iphoto on my macbook pro. This is the first time I've had this difficulty. The curious thing is it did import 4 photo & 2 movie img files. After about an hour waiting while it processes 188 image

  • Monitoring Aironet 350 Bridge Link Signal Strength

    Hello, Does anyone have ideas/examples on using SNMP to query 350 series bridges to obtain running data on signal strength & quality? I would like to use something like MRTG to monitor signal strength, along with link usage. Looking through the MIB f