ArrayCollection trouble *returns*

Hello!
Is there anyway I can have an ArrayCollection or plain Array with this structure?
myVar[1]['red']
myVar[1]['yellow']
myVar[1]['green']
myVar[2]['red']
myVar[2]['yellow']
myVar[2]['green']
etc
1. Can such data types start at different values than 0?
2. Multiple keys with the same value.
3. Prevent AC from 'indexing' the data like myVar[0][1]['red'], myVar[1][1]['yellow'] etc.
I'd greatly appreciate any help with this.
Thank you!

Hello,
Have you thought give it a try to use Dictionary in a Dictionary?
For example at key myVar[1]  you would have stored another dictionary, and myVar[1]['red'] would return the value of the inside Dictionary.
Claude Bur.

Similar Messages

  • Hi I have trouble returning a completed PDF form to sender - it looses my filled in info - how do I solve this?

    Hi I have trouble returning a completed PDF form to sender - it looses my filled in info - how do I solve this?

    Are there any dialog boxes popping up behind your Yahoo screen?
    I have intermittent problems attaching files in Yahoo mail and this is usually the reason.  I'm also using an iMac (10.7.3) and this is likely the problem.
    It is generally a Yahoo issue rather than a Mac problem.

  • JNI_CreateJavaVM trouble; returns -4

    Hello all,
    Has anyone seen a problem with the JNI_CreateJavaVM function returning a -4? This problem is happening on one our client machines that has Windows Server 2003, SP1 installed. This problem only shows up when using a web client. Console applications work fine and not all web clients running on different machines are getting this error. The client is running the OS on VMWare. I have been able to replicate the problem under SP2 only. Currently, I think that there must be some patch that was applied that is causing the problem because the error doesn't happen on other machines. Hmmmm.
    Appreciate any help,
    Wes

    Yah - no fun.
    Better post some relevant code - maybe folks can help.

  • Trouble returning String from JNI method

    I'm a JNI newbie who is going through the SUN online book on JNI and have put together the 2nd program example (right after "helloworld"), but it is not working right. It is supposed to prompt you for a string, then returns the string that you type in. Right now it compiles without error, but it returns only the first word that I type, not the whole sentence. What am I doing wrong?
    Here's the code:
    Prompt.java
    package petes.JNI;
    public class Prompt
        private native String getLine(String prompt);
        static
            System.loadLibrary("petes_JNI_Prompt");
        public static void main(String[] args)
            Prompt p = new Prompt();
            String input = p.getLine("Type a line: ");
            System.out.println("User typed: " + input);
    }petes_JNI_Prompt.h
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include <jni.h>
    /* Header for class petes_JNI_Prompt */
    #ifndef _Included_petes_JNI_Prompt
    #define _Included_petes_JNI_Prompt
    #ifdef __cplusplus
    extern "C" {
    #endif
    * Class:     petes_JNI_Prompt
    * Method:    getLine
    * Signature: (Ljava/lang/String;)Ljava/lang/String;
    JNIEXPORT jstring JNICALL Java_petes_JNI_Prompt_getLine
      (JNIEnv *, jobject, jstring);
    #ifdef __cplusplus
    #endif
    #endifpetes_JNI_Prompt.c
    #include <jni.h>
    #include <stdio.h>
    #include "petes_JNI_Prompt.h"
    JNIEXPORT jstring JNICALL Java_petes_JNI_Prompt_getLine
      (JNIEnv *env, jobject this, jstring prompt)
         char buf[128];
         const jbyte *str;
         str = (*env)->GetStringUTFChars(env, prompt, NULL);
         if (str == NULL)
              return NULL;  /*  OutOfMemoryError already thrown */
         printf("%s", str);
         (*env)->ReleaseStringUTFChars(env, prompt, str);
         // assume here that user will ty pe in 127 or less characters
         scanf("%s", buf);
         return (*env)->NewStringUTF(env, buf);
    }Thanks in advance!
    /Pete

    OK, I have something that works now by substituting fgets for scanf. I have two other questions:
    1) Do I need to free the memory created in buf? Will it allocate memory every time the method is run? Or will it allocate only once on creation, and so is no big deal?
    2) A minor question: When I run this program in eclipse, the prompt string is displayed in the console only after the input string is entered and displayed. It works fine when I run it from the command line however. I have a feeling that this is a problem with how Eclipse deals with native methods and perhaps nothing I can fix. Any thoughts?
    Thanks
    Pete
    Addendum, the updated code:
    #include <jni.h>
    #include <stdio.h>
    #include "petes_JNI_Prompt.h"
    JNIEXPORT jstring JNICALL Java_petes_JNI_Prompt_getLine
      (JNIEnv *env, jobject this, jstring prompt)
         char buf[128];
         const jbyte *str;
         str = (*env)->GetStringUTFChars(env, prompt, NULL);
         if (str == NULL)
              return NULL;  /*  OutOfMemoryError already thrown */
         printf("%s", str);
         (*env)->ReleaseStringUTFChars(env, prompt, str);
         //scanf("%s", buf);
         fgets(buf, 128, stdin);
         return (*env)->NewStringUTF(env, buf);
    }Message was edited by:
    petes1234

  • Trouble returning to leopard while installing windows xp

    I went and used boot camp to install windows xp and everything when great, i formtted the partition to 32 GB; however, when i got to windows setup I forgotten I needed the product key and i can't find my xp disc product key. So now i just want to exit the installion and get back to my 200GB partition of mac os!
    The problem with getting back is that once i restart or boot up the computer only allows me to choose to boot from the disc(xp cd) or let it run until it gets to windows setup where i get stuck on product key again!
    I can't force my disc out of my mac pro , i've tried appleoption+pr and it doesn't work either......
    How to i get back to just normal mac os ...?
    Message was edited by: SammiOO

    thank you, now i feel like an idiot for not doing that first .... = ..=

  • Convert HierarchicalCollectionView to ArrayCollection

    I'm trying to retrieve the ArrayCollection data provided to DataGrid and AdvancedDataGrid. While gridID.dataProvider works for flat data, I'm getting coercion error when data is heirarchical. Is there a way to retrieve the original ArrayCollection data? Parsing doesn't seem to work either. TIA!

    If you have a GroupingCollection2 instance, you can still retrieve its source afterward by using something like var ac:ArrayCollection = gc.source as ArrayCollection;
    <mx:AdvancedDataGrid id="myADG"   
        <mx:dataProvider>
          <mx:GroupingCollection2 id="gc" source="{dpFlat}">
            <mx:grouping>
              <mx:Grouping>
                <mx:GroupingField name="Region"/>
                <mx:GroupingField name="Territory"/>
              </mx:Grouping>
            </mx:grouping>
          </mx:GroupingCollection2>
        </mx:dataProvider> 
        <mx:columns>
          <mx:AdvancedDataGridColumn dataField="Region"/>
          <mx:AdvancedDataGridColumn dataField="Territory"/>
          <mx:AdvancedDataGridColumn dataField="Territory_Rep"/>
          <mx:AdvancedDataGridColumn dataField="Actual"/>
          <mx:AdvancedDataGridColumn dataField="Estimate"/>
        </mx:columns>
      </mx:AdvancedDataGrid>
    In the case of this example from the livedocs, var ac:ArrayCollection = gc.source as ArrayCollection; would return a reference to dpFlat.

  • CAML query to return multi-user field from a Sharepoint list

    I have a list in SharePoint that contains a field of type Multi-User which can contain 1 to many user names. I'm having trouble returning a string containing anything when more then 1 user is selected in the field.  Can someone point me in the right
    direction?

    You can't query on a Mutli-user field using a "contains" filter - using the GUI. 
    However, you can change the CAML for the query using SharePoint Designer.
    E.g. In my view, I want to return a list of documents where the Contributor field (a multi-user field) contains the user "Warner".
    In the GUI, I create the view, but I'm not allowed to use the filter "Contains", so I use "Equals" instead. Of this won't work unless the only user is "Warner". So I open SharePoint Designer, and I change the query used on that view from Eq to Contains.
    Original query:
    <View Name="{D0E65C04-0A53-4C26-9004-68B3CFF1F11A}" MobileView="TRUE" Type="HTML" DisplayName="Warners Documents" Url="/Shared Documents/Forms/Warners Documents.aspx" Level="1" BaseViewID="1" ContentTypeID="0x" ImageUrl="/_layouts/15/images/dlicon.png?rev=23" >
    <Query>
    <Where>
    <Eq>
    <FieldRef Name="Contributors"/>
    <Value Type="Text">Warner</Value>
    </Eq>
    </Where>
    </Query>
    <ViewFields>
    <FieldRef Name="DocIcon"/>
    <FieldRef Name="LinkFilename"/>
    <FieldRef Name="Modified"/>
    <FieldRef Name="Editor"/>
    <FieldRef Name="Contributors"/>
    </ViewFields>
    <RowLimit Paged="TRUE">30</RowLimit>
    <Aggregations Value="Off"/>
    <JSLink>clienttemplates.js</JSLink>
    <XslLink Default="TRUE">main.xsl</XslLink>
    <Toolbar Type="Standard"/>
    </View>
    New Query:
    <View Name="{D0E65C04-0A53-4C26-9004-68B3CFF1F11A}" MobileView="TRUE" Type="HTML" DisplayName="Warners Documents" Url="/Shared Documents/Forms/Warners Documents.aspx" Level="1" BaseViewID="1" ContentTypeID="0x" ImageUrl="/_layouts/15/images/dlicon.png?rev=23" >
    <Query>
    <Where>
    <Contains>
    <FieldRef Name="Contributors"/>
    <Value Type="Text">Warner</Value>
    </Contains>
    </Where>
    </Query>
    <ViewFields>
    <FieldRef Name="DocIcon"/>
    <FieldRef Name="LinkFilename"/>
    <FieldRef Name="Modified"/>
    <FieldRef Name="Editor"/>
    <FieldRef Name="Contributors"/>
    </ViewFields>
    <RowLimit Paged="TRUE">30</RowLimit>
    <Aggregations Value="Off"/>
    <JSLink>clienttemplates.js</JSLink>
    <XslLink Default="TRUE">main.xsl</XslLink>
    <Toolbar Type="Standard"/>
    </View>
    This now works.
    However, the SharePoint team probably put this restriction in place for a reason. Possibly a performance related reason, due to the query performed on the SQL server, so use this method with caution.
    Regards, Matthew
    MCPD | MCITP
    My Blog
    View
    Matthew Yarlett's profile
    See my webpart on the TechNet Gallery that allows administrative users to upload, crop and format user profile photos. Check it out here:
    Upload and Crop User Profile Photos

  • Returning records from binary file

    Hi,
    I am having trouble returning all the records from a binary file. As my knowledge is limited, I haven't been able to devise a method for counting the records and then displaying them one by one.
    Any help you can provide is appreciated. Here is the basis of my code:
    FileInputStream in = new FileInputStream("stud.bin");
    ObjectInputStream s = new ObjectInputStream(in);
    //System.out.println(s.available());
    String studentFile = (String)s.readObject();
    String gpaFile = (String)s.readObject();
    classRoll.addStudent (studentFile, gpaFile);
    System.out.println(studentFile + " has a GPA of " + gpaFile);
    System.out.flush();
    classRoll.addStudent("andy", "4.5");
    s.close();
    System.out.println(classRoll);

    are these files in text format? You should use BufferedReader class- or some native, file component of the java.io API to retrieve the values. ObjectInputStreams are meant to exchange Object instances between resources, in other words you take a specific class, generalize it and then put it in a stream. You should not use ObjectStream for retrieving IO values because you are basically taking a specific class, making it general and then converting it back to a specific class. You should only use an ObjectInputStream when you need to send a current Object to some resource (often a remote resource) that does not have access to it.
    Do some thing like:
    FileInputStream f = new FileInputStream("file");
    BufferedReader in = new BufferedReader(new InputStreamReader(f));
    while(true) {
    String line = in.readLine();
    if (line == null)
    break;
    The above code is not necessarily the best, but it might help give you a sense of how to solve the problem. You should probably stick to the java.io API excusivly and avoid the ObjectStream class for this particular problem.

  • Tell me it's not true... only 1 app at a time???

    I never even thought to ask before purchasing. Seemed like a no-brainer, like not bothering to ask if your new car comes with a steering wheel.
    There's no way that Apple would have omitted something so basic as multitasking. There's got to be a way. If I can't browse on Safari while listening to Pandora, then this thing's going back.

    ...things that are ridiculously obvious...
    I always used to think it was "ridiculously obvious" that someone would at least read a serious review of a device like this before buying it. "1 app at a time" was made crystal clear at the first announcement on Jan. 27.
    But after reading various posts here I have stopped assuming that.
    If it turns out that the iPad does not meet your needs after all, I think there is still a shortage of them in many areas, so you should not have any trouble returning or reselling it.

  • Update iTunes (10.2.1 to 10.5)

    Hello everybody. After update iTunes (10.2.1 to 10.5) my Windows (Xp SP2) starting work very slow (open My computer 5 - 7 seconds). When I deleted iTunes all starting work good again. When i installed iTunes again troubles returned. Anybody having idea what is bad? Sorry for my poor English.

    Go to support.microsoft.com/fixit
    In section 2 click on: Install or upgrade software or hardware
    Then click on the title in section 3: Fix problems with programs that cannot be installed or uninstall
    This link may get you there:  http://support.microsoft.com/mats/Program_Install_and_Uninstall/
    Let it run and then try to download it again

  • More than 4GB RAM in 2008 Macbook Pro 17"?

    Does anyone know of a way to get the 2008 Macbook Pro 17" to be able to recognize 8GB RAM instead of the maximum spec of 4GB? Or is it simply a hardware limitation of the board?

    When a Mac has RAM-related problems, the most common manifestations are 1) failure to boot, accompanied by some number of beeps on startup, and 2) kernel panics. Other symptoms are possible, but these are the ones you're most likely to see.
    If you do experience any trouble with 6GB of RAM installed, remove and replace the 4GB module you've installed with the original 2GB module you removed, then repeat as exactly as possible the sequence of operations that led up to the problem. Yes, it may be very hard if not impossible to reconstruct that sequence, particularly if you've been running the computer for a long time when the problem suddenly arises. Still, it's worth trying, to see whether the problem still occurs with the original RAM in place. If it does, you obviously can't blame it on 6GB of RAM. If it doesn't, perhaps you can; further testing is probably in order if you have the time and energy to do it. If you don't, you may want to return the RAM and just get along with 4GB and a stable, dependable computer. Any vendor from whom you will want to consider buying RAM will give a lifetime warranty on it and will explicitly warrant that it's Mac-compatible. Buy from such a vendor and you shouldn't have any trouble returning it if it doesn't work out for you.
    It's also possible that 6GB will work just fine for you except when you try to run some particular app or combination of apps. In that case, you'll have to decide whether you can live with that limitation.

  • Can't remove a node from a tree

    I am using the custom tree dataDescriptor provided in Flex live
    doc. It works for creating the tree and add notes, however when I
    try to remove a node from the tree it cant work. Does anyone have
    any idea?
    This is the code for MyCustomeTreeDataDescriptor.as
    package
    import mx.collections.ArrayCollection;
    import mx.collections.CursorBookmark;
    import mx.collections.ICollectionView;
    import mx.collections.IViewCursor;
    import mx.events.CollectionEvent;
    import mx.events.CollectionEventKind;
    import mx.controls.treeClasses.*;
    public class MyCustomTreeDataDescriptor implements
    ITreeDataDescriptor
    // The getChildren method requires the node to be an Object
    // with a children field.
    // If the field contains an ArrayCollection, it returns the
    field
    // Otherwise, it wraps the field in an ArrayCollection.
    public function getChildren(node:Object,
    model:Object=null):ICollectionView
    try
    if (node is Object) {
    if(node.children is ArrayCollection){
    return node.children;
    }else{
    return new ArrayCollection(node.children);
    catch (e:Error) {
    trace("[Descriptor] exception checking for getChildren");
    return null;
    // The isBranch method simply returns true if the node is an
    // Object with a children field.
    // It does not support empty branches, but does support null
    children
    // fields.
    public function isBranch(node:Object,
    model:Object=null):Boolean {
    try {
    if (node is Object) {
    if (node.children != null) {
    return true;
    catch (e:Error) {
    trace("[Descriptor] exception checking for isBranch");
    return false;
    // The hasChildren method Returns true if the node actually
    has children.
    public function hasChildren(node:Object,
    model:Object=null):Boolean {
    if (node == null)
    return false;
    var children:ICollectionView = getChildren(node, model);
    try {
    if (children.length > 0)
    return true;
    catch (e:Error) {
    return false;
    // The getData method simply returns the node as an Object.
    public function getData(node:Object,
    model:Object=null):Object {
    try {
    return node;
    catch (e:Error) {
    return null;
    // The addChildAt method does the following:
    // If the parent parameter is null or undefined, inserts
    // the child parameter as the first child of the model
    parameter.
    // If the parent parameter is an Object and has a children
    field,
    // adds the child parameter to it at the index parameter
    location.
    // It does not add a child to a terminal node if it does not
    have
    // a children field.
    public function addChildAt(parent:Object, child:Object,
    index:int,
    model:Object=null):Boolean {
    var event:CollectionEvent = new
    CollectionEvent(CollectionEvent.COLLECTION_CHANGE);
    event.kind = CollectionEventKind.ADD;
    event.items = [child];
    event.location = index;
    if (!parent) {
    var iterator:IViewCursor = model.createCursor();
    iterator.seek(CursorBookmark.FIRST, index);
    iterator.insert(child);
    else if (parent is Object) {
    if (parent.children != null) {
    if(parent.children is ArrayCollection) {
    parent.children.addItemAt(child, index);
    if (model){
    model.dispatchEvent(event);
    model.itemUpdated(parent);
    return true;
    else {
    parent.children.splice(index, 0, child);
    if (model)
    model.dispatchEvent(event);
    return true;
    return false;
    // The removeChildAt method does the following:
    // If the parent parameter is null or undefined, removes
    // the child at the specified index in the model.
    // If the parent parameter is an Object and has a children
    field,
    // removes the child at the index parameter location in the
    parent.
    public function removeChildAt(parent:Object, child:Object,
    index:int, model:Object=null):Boolean
    var event:CollectionEvent = new
    CollectionEvent(CollectionEvent.COLLECTION_CHANGE);
    event.kind = CollectionEventKind.REMOVE;
    event.items = [child];
    event.location = index;
    //handle top level where there is no parent
    if (!parent)
    var iterator:IViewCursor = model.createCursor();
    iterator.seek(CursorBookmark.FIRST, index);
    iterator.remove();
    if (model)
    model.dispatchEvent(event);
    return true;
    else if (parent is Object)
    if (parent.children != undefined)
    parent.children.splice(index, 1);
    if (model)
    model.dispatchEvent(event);
    return true;
    return false;
    This is my tree definition:
    <mx:Tree width="143" top="0" bottom="0" left="0"
    height="100%"
    id="publicCaseTree"
    dataDescriptor="{new MyCustomTreeDataDescriptor()}"
    dataProvider="{ac}"
    defaultLeafIcon="@Embed('assets/caseIcon.png')"
    change="publicTreeChanged(event)"
    dragEnabled="true"
    dragMoveEnabled="false"/>
    This is how I remove the selected node from the tree. When
    Delete button is clicked, the doDeleteCase function is
    exectuted.
    public function publicTreeChanged(event:Event):void {
    selectedNode =
    publicCaseTree.dataDescriptor.getData(Tree(event.target).selectedItem,
    ac);
    public function doDeleteCase(event:Event):void{
    publicCaseTree.dataDescriptor.removeChildAt(publicCaseTree.firstVisibleItem,
    selectedNode, 0, ac);
    Any help would be appreciated.Thanks.

    Finally I removed nodes from tree, but not sure I did in the
    right way. Anybody encounter the same problem, please
    discuss.

  • Retrieving a UDT object from a Java Stored Procedure

    I am really having trouble returning a UDT object (AttributeUDT) from a Java stored procedure. I am using Oracle 8.1.6 and JDeveloper 3.2.2. I have successfully used JPublisher to create the Java source code files for my UDT, now I would like to use that in coordination with my Java stored procedure. I've loaded the Java stored procedure into the database using the Deployment option in JDeveloper. However, when it loads the procedure, it translates the 3rd parameter to an OBJECT type, thus making the stored procedure invalid. I can use SQL Navigator to correct the package by changing the OBJECT reference to AttributeUDT (my UDT data type). Unfortunately, my Java stored procedure still does not work. Any help would be greatly appreciated! Thanks in advance for your time!
    In the example below, could anyone please tell me:
    1. How do I register the OUT variable for the UDT?
    2. Is it correct to use the casted call to getObject to retrieve my UDT object?
    3. Is it valid to use the UDT data type in the java stored procedure method signature?
    The call to the Java stored procedure:
    OracleCallableStatement cs3 = (OracleCallableStatement)conn.prepareCall( "{ call sandbox.getQualifiersV3( ?, ?, ?) }");
    cs3.registerOutParameter( 1, Types.VARCHAR);
    cs3.registerOutParameter( 2, Types.VARCHAR);
    cs3.registerOutParameter( 3, ???????);
    cs3.execute();
    System.out.println( "ID: " + cs3.getString( 1));
    System.out.println( "Prompt: " + cs3.getString( 2));
    AttributeUDT attributes = (AttributeUDT)cs3.getObject( 3);
    System.out.println( "Table id: " + attributes.getLogicalTableId());
    System.out.println( "Element id: " + attributes.getElementId());
    cs3.close();
    ===========================================
    The Java stored procedure:
    public static void getQualifiersV3( String ids[], String prompts[],
    AttributeUDT attributes[]) throws SQLException {
    OracleConnection conn = (OracleConnection)new OracleDriver().defaultConnection();
    Statement stmt = conn.createStatement();
    OracleResultSet rs = (OracleResultSet)stmt.executeQuery(
    "SELECT * "
    + "FROM VPS_ABOK_QUALIFIERS "
    + "WHERE qualifier_id = 2001");
    rs.next();
    ids[0] = rs.getString( 1);
    prompts[0] = rs.getString( 2);
    attributes[0] = (AttributeUDT)rs.getCustomDatum( 3, AttributeUDT.getFactory());
    rs.close();
    stmt.close();
    null

    Sounds like your C2 REF TYP1 attribute may be null. Unfortunately you neglected to say where in your code the NullPointerException occurs.

  • Does class used by BlazeDS have limite ?

    I created a java class like this, and i wrote an AS class to match it ,
    When i call a java  function and  return a object with type is Quest_Collect. sometimes I will get an error ,
    if i setted sections_collect is null ,everything is ok
    if i added an customer class Section_Collect object to section_collect ,i will get the error #2004
    if i added an customer class "Y" object to section_collect ,it will be fine.
    At first ,I think there must be somthing wrong with the class Section_Collect, so i check the java class and AS class over and  over again.
    and i wrote a java function whitch called by the flex client  to test the class Section_Collect.
    which is weird, it 's ok
    Does anyone can help me ?
    PS.sorry for my poor English.
    public class Quest_Collect implements Serializable, Externalizable {
        private String quest_id;
        private int showcount=0;
        private int commitcount=0;
        private ArrayCollection sections_collect;
        public Quest_Collect()
            sections_collect= new ArrayCollection();
        @Override
        public void readExternal(ObjectInput input) throws IOException,
                ClassNotFoundException {
            // TODO Auto-generated method stub
            quest_id=(String) input.readObject();
            showcount=input.readInt();
            commitcount=input.readInt();
            sections_collect=(ArrayCollection) input.readObject();
        @Override
        public void writeExternal(ObjectOutput output) throws IOException {
            // TODO Auto-generated method stub
            output.writeObject(quest_id);
            output.writeInt(showcount);
            output.writeObject(commitcount);
            output.writeObject(sections_collect);
        public synchronized String getQuest_id() {
            return quest_id;
        public synchronized void setQuest_id(String quest_id) {
            this.quest_id = quest_id;
        public synchronized int getShowcount() {
            return showcount;
        public synchronized void setShowcount(int showcount) {
            this.showcount = showcount;
        public synchronized void addShowcount()
            this.showcount++;
        public synchronized int getCommitcount() {
            return commitcount;
        public synchronized void setCommitcount(int commitcount) {
            this.commitcount = commitcount;
        public synchronized void addCommitcount()
            this.commitcount++;
        public synchronized ArrayCollection getSections_collect() {
            return sections_collect;
        public synchronized void setSections_collect(ArrayCollection sections_collect) {
            this.sections_collect = sections_collect;
    public class Section_Collect implements Externalizable, Serializable {
        private String section_id;
        private ArrayCollection options_collect;
        public Section_Collect()
            options_collect= new ArrayCollection();
        @Override
        public void readExternal(ObjectInput input) throws IOException,
                ClassNotFoundException {
            // TODO Auto-generated method stub
            section_id=(String) input.readObject();
            options_collect=(ArrayCollection) input.readObject();
        @Override
        public void writeExternal(ObjectOutput output) throws IOException {
            // TODO Auto-generated method stub
            output.writeObject(section_id);
            output.writeObject(options_collect);
        public synchronized String getSection_id() {
            return section_id;
        public synchronized void setSection_id(String section_id) {
            this.section_id = section_id;
        public synchronized ArrayCollection getOptions_collect() {
            return options_collect;
        public synchronized void setOptions_collect(ArrayCollection options_collect) {
            this.options_collect = options_collect;

    Anybody know what «class pCnv» might translate to?
    Whether or not iTunes is in the process of converting files or CD tracks. This doesn't translate to anything in the current version of iTunes.
    And what is this piece of code supposed to do?
    Waits until iTunes is done converting and then continues with the script.
    (45661)

  • VERY slow mobile Hotspot connection?

    I recently purchased the 4510L LTE mobile hotspot as it was that or dial up. I have been getting download speeds that generally cap out at about 100 KBps. That seems very slow for this area, with 3G coverage. I am always at 3 or 4 bars of service and am unsure if this is standard for that or if I am for some reason getting incredibly slow internet.

    MyUnluckyDay wrote:
    Yes, I have tried to move it around the house and that helped in a very very small way. I just don't think my area is really cut out for this type of service, I recently discovered that there is one company that offers DSL and hopefully I can get that. I luckily still have time on my 14 days and hope that I don't have any trouble returning and canceling my service.
    Thanks to the community member for your input.
    Hi MyUnluckyDay,
    Have you kept trying to use your mobile hotspot to see if the speeds improved? Are you using a laptop with the connection that has an Anti Virus program running at the time slow speed occurs? If so, please try clearing the cache on your web browser and disable your Anti Virus program and retry using the hotspot to see if this improves the speed of your connection. Speeds can vary depending on what your doing on the connection such as downloading a large application or streaming videos, etc.  Also, there was a software update released on September 1st that can help with the connection issues. Here is a direct link to our website that will provide steps on how to obtain the software update. I hope these suggestions can help with your concerns.  

Maybe you are looking for

  • Closing an invoice with an open payment

    Hello, Can anyone help in getting me started on how to close an invoice with an open payment?.  I have a requirement to find the open payments for an invoice and close the invoice programmatically. Thanks. -Richard.

  • Is there a way to prevent a PDF file from being forwarded?

    is there a way to prevent a PDF file from being forwarded? For example, im a personal trainer and if i send a client a plan via PDF file, i want to make sure that they cannot send it to anyone else. I read about how you can secure a file by creating

  • How do I password secure some of my files

    How can I password protect my files

  • PM and BI Self Study

    Could you pls help me to access Hyperion Performance Management and BI Self Study CD-ROM as it's asking Password which i don't have. Thanks In Advance Regards N Kumar Edited by: Kumar N on 18 Jan, 2009 11:06 PM

  • Intrastat Declaration for Italy : 2010 Changes

    Hi Experts, I'm aware there are changes required for the Italy Intrastat Delaration report, based on information supplied in SAPnote 1390593. But can anyone point to where the Italian Tax authority actually states that these changes are required for