Breaking down a concatenated string

Hi mates
I have a requirement where i have to breakdown a string for ex: AV86140-(AV86140_BB+AV86140_TB) into three different properties (Account1, Account2 and Account3).
Expected scenario,
Account1 = AV86140
Account2 = AV86140_BB
Account3 = AV86140_TB
The issue is the lengths of the property values will vary, so i cannot hard code lengths in the Substring function based on the position of '-' or '+'.
I worked out Account1... Account2/3 is the issue.
Can anybody help me on this please?
Many Thanks
VJ

Hi Cable Summers/Ramesh
Many thanks for responding.
That is the description of a node. I need to use that description string to break it down into three values and store it in three properties.
Account1 is easier as it has the first part of the string and i used the SubString/Pos function to get the exact length from the first character (not hard coded).
It is the second and the third properties that are an issue as the description string length is not constant and can change (second and third parts of the description can be longer).
Cheers
VJ

Similar Messages

  • Using Javascript to create concatenated string from checkbox fields to one text field

    Hi. I have a PDF form that I am trying to have output to a spreadsheet that matches my database schema. Here is the dilemna:
    * I have a set of checkboxes for available languages (LANGUAGE_ENGLISH, LANGUAGE_SPANISH, etc.) When they export to spreadsheet, the value is TRUE.
    * I need to take values from checked boxes and create a single string in a text field called LANGUAGE_DISPLAY (so my UI will not need to do the concatenation). If LANGUAGE_ENGLISH is TRUE (checked), append "English, " to LANGUAGE_DISPLAY, else append "". Then, if LANGUAGE_SPANISH is TRUE (checked), append "Spanish, " to LANGUAGE_DISPLAY, else append "". And on and on
    In the LANGUAGE_DISPLAY text field properties, I am inserting a Custom Calculation script to try to achieve this, but am not getting any results. I tried teh following even trying to pull the checkboxes default values and string them together:
    box1 = this.getField("LANGUAGE_ENGLISH").value.toSrting();
    box2 = this.getField("LANGUAGE_FARSI").value.toSrting();
    box3 = this.getField("LANGUAGE_MANDARIN").value.toSrting();
    event.value = box1 + ', ' + box2 + ', ' + box3;
    I also played with this to get the desired strings output...but to no avail:
    if ( LANGUAGE_ENGLISH.rawValue == true )
    box1.rawValue = "English, ";
    if ( LANGUAGE_FARSI.rawValue == true )
    box1.rawValue = "Farsi, ";
    if ( LANGUAGE_HEBREW.rawValue == true )
    box1.rawValue = "Hebrew, ";
    event.value = box1 + box2 + box3;
    Then I tried to simplify to see one field output so used this script...still no results:
    event.value = "";
    var f = this.getField("LANGUAGE_ENGLISH");
    if ( f.isBoxChecked() == true) {
    event.value = "English";
    Couple questions:
    1) Am I on the right track with any of these scripts?
    2) Is there something else I need to do to get the script to run before running the Create Spreadsheet with Data Files comman in Acrobat to get my csv file output? Maybe there needs to be some event to get the checkbox values read by that field in order to calculate/create the string.
    Appreciate any help you can provide.

    LiveCycle Designer has shipped with all Acrobat Professional versions since the "Professional" version was introduced with version 6.
    You do not let us know want results you get in the field or the JavaScript console.
    Using:
    box1 = this.getField("LANGUAGE_ENGLISH").value.toString();
    box2 = this.getField("LANGUAGE_FARSI").value.toString();
    box3 = this.getField("LANGUAGE_MANDARIN").value.toString();
    event.value = box1 + ', ' + box2 + ', ' + box3;
    returns "Off, Off, Off", when no box is checked and returns "Yes" for the appropriate box being checked when the default value is used for the creation of the check box. So if one would make the 'Export Value' of the box from the default value of 'Yes" to the appropriate language, one would get a more desirable result. But for each unchecked box the value would appear as "Off". So one needs to change the 'Off' value to a null string. But one is still left with the separator when there is an unchecked option.
    Using the following document level function:
    // Concatenate 3 strings with separators where needed
    function fillin(s1, s2, s3, sep) {
    Purpose: concatenate up to 3 strings with an optional separator
    inputs:
    s1: required input string text or empty string
    s2: required input string text or empty string
    s3: required input string text or empty string
    sep: optional separator sting
    returns:
    sResult concatenated string
    // variable to determine how to concatenate the strings
    var test = 0; // all strings null
    var sResult; // re slut string to return
    // force any number string to a character string for input variables
    s1 = s1.toString();
    s2 = s2.toString();
    s3 = s3.toString();
    if(sep.toString() == undefined) sep = ''; // if sep is undefined force to null
    assign a binary value for each string present
    so the computed value of the strings will indicate which strings are present
    when converted to a binary value
    if (s1 != "") test += 1; // string 1 present add binary value: 001
    if (s2 != "") test += 2; // string 2 present add binary value: 010
    if (s3 != "") test += 4; // string 3 present add binary value: 100
    /* return appropriate string combination based on
    calculated test value as a binary value
    switch (test.toString(2)) {
    case "0": // no non-empty strings passed - binary 0
    sResult = "";
    break;
    case "1": // only string 1 present - binary 1
    sResult = s1;
    break;
    case "10": // only string 2 present - binary 10
    sResult = s2;
    break;
    case "11": // string 1 and 2 present - binary 10 + 1
    sResult = s1 + sep + s2;
    break;
    case "100": // only string 3 present - binary 100
    sResult = s3;
    break;
    case "101": // string 1 and 3 - binary 100 + 001
    sResult = s1 + sep + s3;
    break;
    case "110": // string 2 and 3 - binary 100 + 010
    sResult = s2 + sep + s3;
    break;
    case "111": // all 3 strings - binary 100 + 010 + 001
    sResult = s1 + sep + s2 + sep + s3;
    break;
    default: // any missed combinations
    sResult = "";
    break;
    return sResult;
    And the following cleaned up custom calculation script:
    box1 = this.getField("LANGUAGE_ENGLISH").value;
    box2 = this.getField("LANGUAGE_FARSI").value;
    box3 = this.getField("LANGUAGE_MANDARIN").value;
    if (box1 == 'Off') box1 = '';
    if (box2 == 'Off') box2 = '';
    if (box3 == 'Off') box3 = '';
    event.value = fillin(box1, box2, box3, ', ');
    One will get the list of languages with the optional separator for 2 or more language selections.

  • Simple question: code break down

    Hi guys,
    Just one question about the following piece of code:
    public class Counter2 implements Runnable {
    protected int count;
    protected int inc;
    protected int delay;
    public Counter2(int init, int inc, int delay) {
    this.count = init;
    this.inc = inc;
    this.delay = delay;
    public void run() {
    try {
    for (;;) {
    System.out.print(count + " ");
    count += inc;
    Thread.sleep(delay);
    } catch (InterruptedException e) {}
    public static void main(String[] args) {
    new Thread(new Counter2(0, 1, 33)).start();
    new Thread(new Counter2(0, -1, 100)).start();
    .......in the main method, a thread is created and started all in one line.........can someone break this down and show how this would be write if done in a few lines?
    Thanks,
    Zaf

    Thread thread1 = new Thread(new Counter2(0, 1, 33));
    thread1.start();or, to break down even more...
    Counter2 counter2 = new Counter2(0, 1, 33);
    Thread thread1 = new Thread(counter2);
    thread1.start();

  • Please help me break down this code

    i really need help at understanding this, i put it together a while ago with some help but im really no pro at java but my tutor has asked me to give a break down of the code line by line
    /*  This program rolls two six-sided dice a user-specified
    number of times, and prints how many times an ordered dice combination occured.
    This is followed by a column stating how many times the sum of the two dice
    equalled 2 through 12.
    import java.util.Scanner;
    public class DiceSumDistribution
         public static void main(String[] args)
              Scanner scan = new Scanner(System.in); //receive input from keyboard
              System.out.print("Enter the number of times you would like to toss two dice: "); //prompt user for input
              int timesToToss = scan.nextInt(); //read in user input
              int[] diceSum = new int[37]; //this array holds the dice roll distribution table
              int[] frequencySum = new int[13]; //this array holds how many times a dice sum occured
              int die1, die2; //integers representing the two dice
              for(int i = 0; i < timesToToss; i++) //toss two dice as many times as the user specified
                   die1 = (int) (Math.random()*6+1); //assign random number (1 through 6) to dice one
                   die2 = (int) (Math.random()*6+1); //assign random number (1 through 6) to dice two
                   diceSum[(6*(die1-1))+die2]++; //add one to appropriate cell in distribution table
                   frequencySum[die1+die2]++; //add one to appropriate sum counter
              /*the dice roll distribution table shows how many times a certain combination of dice rolls
                      and the rows represent the other dice.
              System.out.println("\n---Dice Roll Distribution Table---");
              System.out.println("\t 1\t2\t3\t4\t5\t6"); //print distribution table
              System.out.println("\t____________________________________________"); //print distribution table
              for(int i = 1; i < 37; i++) //print all 36 cells of distribution tables
                   if(i%6 == 1) //if at the beginning of a table row
                        System.out.print(i/6+1 + "\t|"); //print row number
                   System.out.print(diceSum[i]+ "\t"); //for each cell in a row, print its value
                   if(i%6 == 0) //if at the end of a row
                        System.out.println(); //go down a line
              /*this column represents how many times a sum occured. For example, if the following output occurs
              System.out.println("\n---Dice Roll Sums---");
              for(int i=2; i<=12; i++) //for each possible dice sum
                   System.out.println(i+": " + frequencySum); //print each dice sum on its own row
    ii wrote this with some help a while ago but i havent done java at all since so im totaly clueless again. if someone could help i would be really greatful, thanks.

    ok chill man, and i wasnt asking you to do it for me or nothign liek that.
    its mostly these parts im having trouble explaining
    Scanner scan = new Scanner(System.in); //receive input from keyboard
              System.out.print("Enter the number of times you would like to toss two dice: "); //prompt user for input
              int timesToToss = scan.nextInt(); //read in user input
    die1 = (int) (Math.random()*6+1); //assign random number (1 through 6) to dice one
                   die2 = (int) (Math.random()*6+1); //assign random number (1 through 6) to dice two
                   diceSum[(6*(die1-1))+die2]++; //add one to appropriate cell in distribution table
                   frequencySum[die1+die2]++; //add one to appropriate sum counter
                   if(i%6 == 1) //if at the beginning of a table row
                        System.out.print(i/6+1 + "\t|"); //print row number
                   System.out.print(diceSum[i]+ "\t"); //for each cell in a row, print its value
                   if(i%6 == 0) //if at the end of a row
                        System.out.println(); //go down a linei know in the last one there the "if(i%6 == 1) " and "if(i%6 == 0) " effect the
    "System.out.print(i/6+1 + "\t|");" in some way, but i dont really know how to explain it.
    thanks

  • Site Web Analytics Reports - Top Pages - Visitor break down

    Hi,
    I would like to know if there is a way to get the top pages with visitors break down under the Site Web Analytics Reports?
    Please advice. And thank in advance.

    Hi,
    According to your post, my understanding is that you wanted to get the top pages with visitors break down under the Site Web Analytics Reports.
    I recommend to use the
    SharePoint flavored Weblog reader which aggregates stuff nicely.
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/en-US/d770105c-65bf-4db4-b3a4-b64b2b1206df/analytics-for-top-pages-by-visitor?forum=sharepointadminprevious
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • C7 breaks down after choosing the resolution for a new project

    Hello Community,
    finally I succeeded in installing C7 on my MacBook Pro with Mavericks 10.9. But it breaks down every time after I choose the resolution for my project. The beachball appears for one second and then C7 breaks down.
    On the same MacBook I can open C7 on another account. But I want to use C7 on my account.
    Has anybody expereienced the same problems?
    Has anybody a solution for my problem?
    Cheers,
    Tom

    Hi there,
    can you please try deleting preferences by using the "CleanPreferencesMac" present in the Captivate installation location/Ultils folder, relaunch Captivate and see it resolves the issue or not.
    Thanks,
    Nimmy Sukumaran.

  • Breaking down Spry Data Repeat

    Hi,
    I'm trying to create a spry data set  in a table from a XML data file. I have done that in below are the  codings I obtained from Spry tool.
    <div  spry:region="KomtarETA">
      <table>
        <tr  class="TableHeader">
          <td width="100">Route</td>
           <td width="1266">Current</td>
          <td  width="1366">Destination</td>
          <td  width="1266">Next</td>
          <td  width="100">Lane</td>
        </tr>
        <tr  class="TableContent" spry:repeat="KomtarETA">
           <td>{route}</td>
          <td>{desitnation</td>
           <td>{current}</td>
          <td>{next}</td>
           <td>>{lane}</td>
    I have some individual  codings need to be done on each individual  data field. I need to  seperate all the spry data into each individual  column.
    My question  is how I can control these data individually when it's in the table ? Is  there any codings changes need to be done ?
    Please advise.
    Thanks.

    Hi,
    Actually what I mean by breaking down the data and not by means of filtering.
    I still want to display every single data but I wan it to be individualised.
    Here's the link to the test site.
    http://www.pcsb.my/test/KomtarETA.html
    What I need is that some column will be static and some will be dynamic. The actual external XML data will be dynamic as there will be a live server feeding and overwritting it.
    If you look at the Spry table portion coding inside the HTML file, it's actually a Spry repeat and I don't have much control over each individual data I want to manipulate the codings.
    Please take a look at it.
    Thanks.

  • Function - Return More than One Value in a Concatenated String

    Hi,
    Is it possible for a function to return a concatenated string(combining more than one number). I am trying to return the PO number by inputting and invoice_id and code number but an invoice_id can have more than one PO with the same code number. I would like to concatenate the PO numbers with commas e.g.
    10124, 10090, 10987
    At the moment the function returns null for these cases that have more than one PO number.
    Thanks

    Also is is possible to create another function that can be called in the same script using the PO number as an IN parameter in SQL. See SQL below:
    select cck.concatenated_segments as "Segment" ,
    cc.code_combination_id,
    NVL ( src . user_je_source_name , '**********' ) AS "Source" ,
    NVL ( cat . user_je_category_name , '**********' ) AS "Category" ,
    jel . period_name as "Period Name" ,
    i.invoice_id as "Invoice ID",
    s.vendor_name as "Vendor Name",
    s.segment1 as "Supplier No",
    jeb . name as "Batch Name" ,
    func_get_po(i.invoice_id, cc.code_combination_id) "PO No",
    jeh . name AS "Header Name" ,
    jel . description AS "Description" ,
    jel.accounted_dr AS "Debit" ,
    jel.accounted_cr AS "Credit" ,
    NVL(jel.accounted_dr, 0) - NVL(jel.accounted_cr, 0) AS "Net Amount"
    FROM apps.gl_code_combinations cc ,
    apps.gl_code_combinations_kfv cck,
    apps.gl_je_lines jel ,
    apps.gl_je_headers jeh ,
    apps.gl_je_batches jeb ,
    apps.gl_je_categories cat ,
    apps.gl_je_sources src,
    apps.gl_import_references r,
    apps.xla_ae_lines al,
    apps.xla_ae_headers ah,
    apps.xla_events e,
    xla.xla_transaction_entities te,
    apps.ap_invoices_all i,
    apps.ap_suppliers s
    WHERE ( cck.concatenated_segments BETWEEN '23.83545.141.000.00.23.000.000' AND '23.83545.141.000.00.23.000.000'
    AND cc.CHART_OF_ACCOUNTS_ID = 50328
    AND jeh.LEDGER_ID IN
    (select acc.ledger_id
    FROM apps.gl_access_set_ledgers acc
    WHERE acc.access_set_id = 1000
    AND jel.code_combination_id = cc.code_combination_id
    AND cck.code_combination_id = cc.code_combination_id
    AND jel.status
    || '' = 'P'
    AND ( jel.accounted_dr != 0
    OR jel.accounted_cr != 0 )
    AND jeh.je_header_id = jel.je_header_id
    AND jeh.actual_flag = 'A'
    AND 1 = 1
    AND jeh.currency_code != 'STAT'
    AND jeb.je_batch_id = jeh.je_batch_id
    AND jeb.average_journal_flag = 'N'
    and src.je_source_name = jeh.je_source
    and cat.je_category_name = jeh.je_category
    and r.je_header_id(+) = jel.je_header_id
    and r.je_line_num(+) = jel.je_line_num)
    AND ( :period_name = jel.period_name
    and al.gl_sl_link_id(+) = r.gl_sl_link_id
    and al.ae_header_id = ah.ae_header_id(+)
    and al.application_id = ah.application_id(+)
    and ah.application_id = e.application_id(+)
    and ah.event_id = e.event_id(+)
    and e.application_id = te.application_id(+)
    and e.entity_id = te.entity_id(+)
    and nvl(te.source_id_int_1,-99) = i.invoice_id(+)
    and i.vendor_id = s.vendor_id(+) )
    AND ( jel.ledger_id = 2041)
    ORDER BY src.user_je_source_name ,
    cat.user_je_category_name ,
    jeb.name ,
    jeh.name ,
    cck.concatenated_segments ,
    jel.je_line_num
    I am using func_get_po(i.invoice_id, cc.code_combination_id), I would like to call another function in this script that uses the PO number as an IN parameter.
    For example func_get_po_requester(i.invoice_id, cc.code_combination_id, func_get_po(i.invoice_id, cc.code_combination_id))
    Would this work?
    Thanks

  • My apple tv(3rd Gen) total screws. connection always break down, nothing changes on the setting!!! no movies, no iTunes, only seconds than it is gone!!

    One month after purchase and perfect functioning my apple Tv is screwed! I can not stream any content to since the connection always breaks down after second, also itunes etc cannot be accessed!!
    I did everything, changed Routher channels to all possible options(13 different and although everything worked before), resetted at the PC ( Was not possible to wifi, connection broke doWn), also resetted the Router. I switched of HD and all kinds off things, no sign of change!
    I found out that actually some apple TV's have a problem with the wifi chip, might be one of those?
    Contacted Apple, they are exchanging it against a used and repaired one?!?! Hello?! It is one month old!!!! No scratches!! And I still had to wait before they checked mine!!!
    I want a new one!! Support is an hilarious excuse for a company that sells this kind of quality image!!! I am hugely disappointed!!
    Did anyone else have this kind of problems?

    So you are having a network connection issue.  Have you run the network diagnositics to test the connection?  Have you trying using a wired connection to isolate if it is a WiFi issue?
    I can not stream any content to since the connection always breaks down after second
    How are you streaming?  AirPlay?  ATV menu?
    I can not stream any content to since the connection always breaks down after second, itunes etc cannot be accessed!!
    Is homesharing enabled?
    I did everything,
    Clearly you have not done everything since the problem has not been found.  Lets try to stick to reality here.
    I found out that actually some apple TV's have a problem with the wifi chip, might be one of those?
    It is not likely if you just bought it new.  You can google for the model numbers that were specificly recalled though if you want to check.
    Did anyone else have this kind of problems?
    A lot of the issues posted are network related.  Most come down to WiFi issues.  Streaming video rarely works well over WiFi unless you have extremely high end WiFi hardware to support it.  Any streaming video product will work better connected via eithernet.

  • Splitting a concatenated string to multiple cells in a row in BIP Reports

    Hello Experts,
    Let me how to split a concatenated string into multiple cells in BIP reports rtf.
    Ex:
    string: acg;ghdf;tesrlkjj;hvfffda
    has to placed in multiple cells like
    string1: acg
    string2: ghdf
    string3: tesrlkjj
    string4: hvfffda
    Appreciate your quick reply.
    Please drop in the pseudo code.
    Thanks & Regards
    Syed

    The report is based on a standard sql query such as
    select item1, item2, item3, item4, item5, item6, item7
    from mytable
    order by item1Wanted to put that in as I am not using an interactive report.
    Thanks
    Wally

  • Could somebody please give me a quick break down...

    Hi there guys,
    i'm new to Flash so apologies but i am a seasoned user of
    photoshop, illustrator and indesign so i'm not completely inept at
    Adobe packages.
    Anyway i really want to learn Flash and have been dabbling a
    little, i've found a site that works similar to the way i envision
    my new site to look, i'm not going to rip it off, just taking
    inspiration from it.
    Could anyone please break down how they'd go about creating
    the fold out square effect that is on
    Periscope.
    I've tried using the 3-d rotation tool to flip the squares
    over but there must be a simpler way instead of repeating that over
    and over? if anyone could please help it would be very much
    appreciated. Breaking it down as simple as possible would be a
    great help.
    Thanks

    Thanks for replying. i've tried doing it with one square as a
    movie clip symbol and then flipping that square over with the 3d
    rotation tool and then over and over. but i'm having to draw other
    squares on other layers to make up the rest of the square as it
    gets created. is this the right way to do it? what would be the
    simplest way? i know you said its just an animation, but how would
    you create the animation?
    Thanks

  • Is it possibloe to get a detailed break down of my calls and sms that would include phone numbers?

    I am on a family plan and was wondering is it possible to get a detailed break down of my calls and sms that would include phone numbers for my line only?

    If you are the account owner, you can log into your My Verizon ccount online and view the usage details for all the lines on the account.  If you are only an account member, you should be able to view some details for your line, but I am not sure exactly how much.

  • What's happen if one of hardware part in my Phone is break down?

    Apple has a new activation way, if one of hardware part in your device is not match with Apple database. Your phone could not active again. I think if I buy an Iphone from Apple, is totally my phone, I can access all data in it, I can fix it if break down without Apple's permission. What's happen if  one day my phone's Wifi, Signal, Bluetooth... are break down? I cannot access my data, continuing using my own phone?
    Apple can do everything to reject illegal activation, but not people likes me. I'm not a thief, I'm using a global phone!

     

  • Images are cutted and youtube-videos are breaking down in ie7, ie8

    hi muse-experts,
    have the problem, that some images are cutted in ie7, ie8. the side is now working on businesscatalyst and another server.
    images are cutted here on bc: http://trabbitour.businesscatalyst.com/angebote.html , http://trabbitour.businesscatalyst.com/ostalgisches.html , http://trabbitour.businesscatalyst.com/deine-trabbitour.html
    the same on the other server: http://trabbitour.de/angebote.html , http://trabbitour.de/ostalgisches.html , http://trabbitour.de/deine-trabbitour.html
    the videos are breaking down, by starting to scroll the side: http://trabbitour.businesscatalyst.com/trab(b)i-was-is-n-das.html
    for ie adaption I inserted on all pages between html and head this line: <!— switch IE 7,8,9,10 to quirks mode —> but with or without this, the error is the same.
    maybe you have an idea, what I can do and what the problem is?
    thank you.

    It's very difficult to say without knowing more about your system. There are a number of possibilities. First, your 13" lacks a discrete GPU, so the CPU is doing the work that a GPU would have done as far as decoding video streams, etc. Each video stream will consume considerable resources from the machine, and if you have multiple things running with video streams being decoded (for example, a browser with video Flash or cumbersome animation and iMovie running at the same time), then that may be a factor.
    Additionally, it could be that you are memory constrained. You didn't post a picture of the process list from activity monitor or the memory usage stats, but you probably want to look and see what the memory and CPU usage is and who's consuming what. Some applications are pretty inefficient. For example, if you have iPhoto open and have thousands of images, the indexed metadata and thumbnails are all stored in RAM. iMovie pulls in clip thumbnail sets - (and worse, it has to do on-the-fly transcoding video assets from some cameras that don't encode the video using the parameters it expects to make indexing frames easier). Again, this would show up as periodic spikes in CPU activity for the app.
    You seem to have plenty of disk space, that's not likely to be a problem.
    Check if Time Machine is running. Time Machine introduces a performance impact, but it's exacerbated by the presence of frequently changed large files (e.g., you don't want Time Machine backing up your video projects while you are working on them).
    Lastly, you may consider checking the console for error messages. This might reveal background processes that might be bogging down the system, or things like filesystem/disk errors. If there are errors in the filesystem, when you access certain portions of the disk, the OS and applications can slow down or lock-up as a result.

  • Why do my ATV's play music sourced from a computer OK but when the same computer plays the same library through Airplay to the same ATV's the streaming breaks down?

    Does anyone know why my ATV's (connected to AV & hifi systems) can play music from a computer OK but when I try to use the same computer and library and play them through the same ATV's using Airplay the streaming often breaks down? Although I could live with the current situation I am missing the opportunity for simultaneous multi-zone playing with single volume control via the Remote App on my iPhoneS. Just find it curious as all the elements of the system are the same, ATV's, computer, router etc and would have expected the quality and efficiency to be the same under both modes of operation.

    Welcome to the Apple community.
    Yes, the quality and efficiency of the audio should be the same for both methods. The fact that it isn't may suggest that you have a problem on your network. Have you checked for interference.

Maybe you are looking for

  • Pixelated images from iPhoto for iPad

    iPhoto for iPad is a fantastic application, but very often although the images I edit look ok within the application, when I look at them in any other application (including apple's own built in photo browser) they are heavily pixelated, or some part

  • OS X 10.5.4 & Airport Extreme 7.3.2 Printing Problem

    I recently purchased my first Mac. I'm a long time PC user and experience software developer. I'd heard of the ease of Mac and finally took the leap. I have to admit, except for printing, this OS and system is fantastic. Now to my problem. I have a P

  • Distiller 9 not properly installed and other questions

    I'm beginning to think I may have gotten a bad installation disc. I'm Running CS3 on a MacBook Pro, with OSX 10.5. When I got the installation disc for Acrobat 9, I followed the directions for removing Acro 8 and installed Acro 9. I came across a nee

  • How does Status column in Execution Window get set?

    Thanks to Jonathan for the reply to my last post. I have a couple of inter-related questions on step-types.  I understand the difference between a Pass/Fail step type and a Numeric Limit step type is that the code module being executed in one case re

  • C_T_VARIABLES

    Hi, I have a typical workbook issue and the following were the issue points: 1. A user have saved his workbook in the shared drive and trying to give access to all the users who have access to this drive. For this there is a option in Excel->tools(Me