What to do when readString() fails and String[] out of bounds ?

Dear Java People,
I have a runtime error message that says:
stan_ch13_page523.InvalidUserInputException: readString() failed. Input data is not a string
java.lang.StringIndexOutOfBoundsException: String index out of range: 0
below is the program
thank you in advance
Norman
import java.io.*;
import java.util.*;
public class FormattedInput
    // Method to read an int value
    public int readInt()
      for(int i = 0; i < 2; i ++)
      if(readToken() == tokenizer.TT_NUMBER)
        return (int)tokenizer.nval;   // value is numeric so return as int
      else
        System.out.println("Incorrect input: " + tokenizer.sval +
           " Re-enter as integer");
        continue;         //retry the read operation
      } // end of for loop
      System.out.println("Five failures reading an int value" + " - program terminated");
      System.exit(1);  // end the program
      return 0;
     public double readDouble() throws InvalidUserInputException
       if(readToken() != tokenizer.TT_NUMBER)
          throw new InvalidUserInputException(" readDouble() failed. " + " Input data not numeric");
       return tokenizer.nval;
     public String readString() throws InvalidUserInputException
       if(readToken() == tokenizer.TT_WORD || ttype == '\"' ||  ttype == '\'')
        return tokenizer.sval;
       else
         throw new InvalidUserInputException(" readString() failed. " + " Input data is not a string");
       //helper method to read the next token
       private int readToken()
         try
           ttype = tokenizer.nextToken();
           return ttype;
         catch(IOException e)
           e.printStackTrace(System.err);
           System.exit(1);
          return 0;
       //object to tokenize input from the standard input stream
       private StreamTokenizer tokenizer = new StreamTokenizer(
                                            new BufferedReader(
                                             new InputStreamReader(System.in)));
       private int ttype;                  //stores the token type code
import java.io.*;
import java.util.*;
public class TryVectorAndSort
     public static void main(String[] args)
    Person aPerson;           // a Person object
    Crowd filmCast = new Crowd();
    //populate the crowd
    for( ; ;)
      aPerson = readPerson();
      if(aPerson == null)
        break;   // if null is obtained we break out of the for loop
      filmCast.add(aPerson);
    int count = filmCast.size();
    System.out.println("You added " + count + (count == 1 ? " person":  " people ") + "to the cast.\n");
    //Show who is in the cast using an iterator
     Iterator myIter = filmCast.iterator();
    //output all elements
    while(myIter.hasNext() )
      System.out.println(myIter.next());
    }//end of main
      //read a person from the keyboard
      static public Person readPerson()
     FormattedInput in = new FormattedInput();
        //read in the first name and remove blanks front and back
        System.out.println("\nEnter first name or ! to end:");
        String firstName = "";
        try
        firstName = in.readString().trim(); //read and trim a string
        catch(InvalidUserInputException e)
        e.printStackTrace(System.err);
        //check for a ! entered. If so we are done
        if(firstName.charAt(0) == '!')
          return null;
        //read the last name also trimming the blanks
        System.out.println("Enter last name:");
        String lastName= "";
        try
          lastName = in.readString().trim(); //read and trim a string
        catch(InvalidUserInputException e)
         e.printStackTrace(System.err);
        return new Person(firstName, lastName);
//when I ran the program the output I received was:
import java.io.StreamTokenizer;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.BufferedReader;
public class InvalidUserInputException extends Exception
   public InvalidUserInputException() { }
      public InvalidUserInputException(String message)
          super(message);
import java.util.*;
class Crowd
  public Crowd()
    //Create default Vector object to hold people
     people = new Vector();
  public Crowd(int numPersons)
    //create Vector object to hold  people with given capacity
     people = new Vector(numPersons);
    //add a person to the crowd
    public boolean add(Person someone)
      return people.add(someone);
     //get the person at the given index
      Person get(int index)
      return (Person)people.get(index);
     //get the numbers of persons in the crowd
      public int size()
        return people.size();
      //get  people store capacity
      public int capacity()
        return people.capacity();
      //get a listIterator for the crowd
      public Iterator iterator()
        return people.iterator();
        //A Vector implements the List interface (that has the static sort() method
        public void sort()
          Collections.sort(people);
      //Person store - only accessible through methods of this class
      private Vector people;
public class Person implements Comparable
  public Person(String firstName, String lastName)
    this.firstName = firstName;
    this.lastName = lastName;
  public String toString()
    return firstName + "  " + lastName;
   //Compare Person objects
    public int compareTo(Object person)
       int result = lastName.compareTo(((Person)person).lastName);
       return result == 0 ? firstName.compareTo(((Person)person).firstName):result;
  private String firstName;
  private String lastName;

Dear Nasch,
ttype is declared in the last line of the FormattedInput class
see below
Norman
import java.io.*;
import java.util.*;
public class FormattedInput
    // Method to read an int value
    public int readInt()
      for(int i = 0; i < 2; i ++)
      if(readToken() == tokenizer.TT_NUMBER)
        return (int)tokenizer.nval;   // value is numeric so return as int
      else
        System.out.println("Incorrect input: " + tokenizer.sval +
           " Re-enter as integer");
        continue;         //retry the read operation
      } // end of for loop
      System.out.println("Five failures reading an int value" + " - program terminated");
      System.exit(1);  // end the program
      return 0;
     public double readDouble() throws InvalidUserInputException
       if(readToken() != tokenizer.TT_NUMBER)
          throw new InvalidUserInputException(" readDouble() failed. " + " Input data not numeric");
       return tokenizer.nval;
     public String readString() throws InvalidUserInputException
       if(readToken() == tokenizer.TT_WORD || ttype == '\"' ||  ttype == '\'')
         System.out.println(tokenizer.sval);
        return tokenizer.sval;
       else
         throw new InvalidUserInputException(" readString() failed. " + " Input data is not a string");
       //helper method to read the next token
       private int readToken()
         try
           ttype = tokenizer.nextToken();
           return ttype;
         catch(IOException e)
           e.printStackTrace(System.err);
           System.exit(1);
          return 0;
       //object to tokenize input from the standard input stream
       private StreamTokenizer tokenizer = new StreamTokenizer(
                                            new BufferedReader(
                                             new InputStreamReader(System.in)));
       private int ttype;                  //stores the token type code
     }

Similar Messages

  • What to do when activation fails and no meaningful information provided

    Hello,
    I just tried activating an Activity in a track. It failed and the Activation Results tab just says "Activation failed. No DC specific results available"
    If I try to create another activity, it's going to consider this failed activity a predecessor and also fail because of the problem with this activity.
    So my dilemna is "how do I find out what the problem was?" I seem to be stuck and NDS is not giving me any helpful information.
    Any help would be GREATLY appreciated.
    Thanks.
    David.

    Hi David,
    Login to CBS and click on the buildspace. Then click on the requests link and after entering appropriate selection parameters choose the request in the table.
    You will get a set of tabs from where you can get all the logs and reason why a request wasnt activated.
    Regards
    Sidharth

  • What to do when ServerSocket fails and a client is trying to connect to it.

    I am creating a ServerSocket at one node and a client at the other node.... My ServerSocket fails due to unavailable port or otherwise... Now what happens to the client that is trying to connect to it.... what exception do i need to catch to terminate the client gracefully and give an error message??

    Continues [http://forums.sun.com/thread.jspa?threadID=5424890]

  • What's happening when Word opens and saves a document?

    Hello,
    I got very unspecific question, but I don't know where to start. I have an open xml document which gets generated by a third party tool. If I open the document using open xml sdk it looks VERY different from how it looks like when I opened and saved it before
    using Word 2013.
    I'm trying to get an understanding on whats Word doing! From what I've seen it's doing some remodelling on the xml file, since it looks very different (other and way more descendants than before) and I would like to achieve the same thing using open xml.
    Although this might be already to much information: The generated word documents contains html code with links to pictures. After Word has touched the file the picture is inside a drawing element, before it's not but in Word both versions look the same.
    I'm thankful for any help you can give me.
    Cheers Andreas
    Regards Andreas MCPD SharePoint 2010. Please remember to mark your question as "answered"/"Vote helpful" if this solves/helps your problem.

    Hi Cheers Andreas,
    >> If I open the document using open xml SDK it looks VERY different from how it looks like when I opened and saved it before using Word 201
    >> What's happening when Word opens and saves a document?
    This forum is discussing about Open XML developing. This is not exactly an OpenXML SDK questions. To be frank, I do not know exactly what Word opens and saves a documents either (this is the implementation details of the product).
    If you are interested on it, the forum below might be more appropriate for you:
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=os_binaryfile
    >> From what I've seen it's doing some remodelling on the xml file, since it looks very different (other and way more descendants than before) and I would like to achieve the same thing using open xml.
    What do you mean by “other and way more descendants”? Do you mean that you want to add new nodes in the xml document? In my option, different objects in word have different nodes. You could refer the link below for more information about Word processing.
    https://msdn.microsoft.com/EN-US/library/office/cc850833.aspx
    If you have issues about OpenXML SDK, since it is a new issue which is different from your original issue, I suggest you post a new thread for the new issue in this forum. Then there would be more community members to discuss the question.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is reseed required when in "failed and Suspended" status

    We had a small hiccup in our SAN which we have resolved. The database copies went into a "Failed and suspended" state on one server. Can we just right click on them and say "resume?"   
    It seems all the documentation on MS web site talk about reseeding the database like it is the norm when the database copy is in "Failed and suspended" error occurs.  Is that accurate or if you select "Resume" will it use the
    transaction log files to bring the database to a healthy state?
    Thanks,

    Hi,
    I would start with the application log and it may tell you what action is required. If there is not any related events, we can consider a reseed.
    Here is an article for your reference.
    Update a Mailbox Database Copy
    http://technet.microsoft.com/en-us/library/dd351100(v=exchg.141).aspx
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • What to do when update fails?

    I received a notice to update Creative Cloud, Lightroom and Photoshop. Creative Cloud repeatedly fails and the other 2 are just sitting with message "waiting" for an hour. What can I do?

    I originally was directed to Adobe support and signed into and was waiting for chat. There was a message and a link directing me specifically here by Adobe support to seek answers while I waited for them. I wouldn't even have know to come here if not directed by their link. I won't do that in the future. Adobe support leaves a lot to be desired as they posted a notice that phone lines were not working properly and the chat was never answered.

  • What to do when consolidation fails

    Hi there,
    I posted previously about how to try to resolve an insufficient space error when I first tried to consolidate, but couldn't find a solution unfortunately. So, now my question is what to do when consolidation is not an option. I can easily copy the music to my new hard drive and I tried consolidating afterward, but the files in iTunes still seem to point to the old location. What's the best way to manually make this change? Thanks.

    I originally was directed to Adobe support and signed into and was waiting for chat. There was a message and a link directing me specifically here by Adobe support to seek answers while I waited for them. I wouldn't even have know to come here if not directed by their link. I won't do that in the future. Adobe support leaves a lot to be desired as they posted a notice that phone lines were not working properly and the chat was never answered.

  • Re I-Movie.  "Communication Error" is what I get when I try and send a clip from my Sony camera to the IMovie program in my IMAC 2008 Intel Chips.  The IMovie program has worked well for several years - up to now.  What has gone wrong?

    Re I-MOVIE.  I am getting a "Communication Error" when I try and send a clip to the IMovie
    program in my IMAC 2008 Intel Chip computer.  This is the first time in 3 years that the
    program has not worked.  What has gone wrong?

    Hi
    Have no idea - But if it is a new problem with exactly the same kind of material that was previously used. Then my trouble shooting guide might help.
    If You
    • used a new Camera - file codec might be a sort that don't work
    • Your main hard disk might get too filled up
    Else try
    Trouble
    When iMovie doesn't work as intended this can be due to a lot of reasons
    • iMovie Pref files got corrupted - trash it/they and iMovie makes new and error free one's
    • Creating a new User-Account and log into this - forces iMovie to create all pref. files new and error free
    • Event or Project got corrupted - try to make a copy and repair
    • a codec is used that doesn't work
    • problem in iMovie Cache folder - trash Cache.mov and Cache.plist
    • version miss match of QuickTime Player / iMovie / iDVD
    • preferences are wrong - Repair Preferences
    • other hard disk problem - Repair Hard Disk (Disk Util tool - but start Mac from ext HD or DVD)
    • External hard disks - MUST BE - Mac OS Extended (hfs) formatted to work with Video
    ( UNIX/DOS/FAT32/Mac OS Exchange - works for most other things - but not for Video )
    • USB-flash-memories do not work
    • Net-work connected hard disks - do not work
    • iPhoto Library got problems - let iPhoto select another one or repair it. Re-build this first then try to re-start iMovie.
    This You do by
    _ close iPhoto
    _ on start up of iPhoto - Keep {cmd and alt-keys down}
    _ now select all five options presented
    _ WAIT a long long time
    • free space on Start-Up (Mac OS) hard disk to low (<1Gb) - I never go under 25Gb free space for SD-Video (4-5 times more for HD)
    • external devices interferes - turn off Mac - disconnect all of them and - Start up again and re-try
    • GarageBand fix - start GB - play a few notes - Close it again and now try iMovie
    • Screen must be set to million-colors
    • Third-party plug-ins doesn't work OK
    • Run "Cache Out X", clear out all caches and restarts the Mac
    • Let Your Mac be turned on during one night. At about midnight there is a set of maintenance programs that runs and tidying up. This might help
    • Turn off Your Mac - and disconnect Mains - for about 20-30 minutes - at least this resets the FireWire port.
    • In QuickTime - DivX, 3ivx codec, Flip4Mac, Perian etc - might be problematic - temporarily move them out and re-try
    (I deleted the file "3ivxVideoCodec.component" located in Mac HD/Library/Quicktime and this resolved my issue.)
    buenrodri wrote
    I solved the problem by removing the file: 3ivxVideoCodec.component. after that, up-dated iMovie runs ok.
    Last resort: Trash all of iMovie and re-install it
    Yours Bengt W

  • Whats wrong with this logic - Why the error, out of bounds

    Hi there,
    I have this code that I am trying to work out with some logic I have put together, as shown below, but I get an error message saying "Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: -29
    ":" What I am basically trying to do is print out a string which has both numbers and words into a vertical dialog window with the appropriate words next to their corresponding numbers.
    {code}
    A = "91011Word121314Sentence151617";
    int start = 9;
    int end = 17;
    // Considering that we are on the first iteration
    for(int i = start; i <= end; i++)
    String a2 = "" + i; // convert the integer 9 into a string
    int a1 = A.indexOf(a2); // get the index of 9 in the string A
    int a3 = a2.length(); // get the length of 9
    int a4 = a1 + a3; // the index of 9 plus its length is "equivalent" to the index of the next number in A -- 1
    String a5 = "" + (i+1); // convert the next integer 10 into a string
    int a6 = A.indexOf(a5); // get the index of 10 in the string A -- 1
    add += a2 + " " + A.substring(a4,a6) + "\n";
    /** Following the logic I would expect that at the end of the first iteration the String "add" should contain,
    just 9 followed by a space, and the A.substring(1,1) would return nothing since there is no word in the
    middle then there will be a new line */
    {code}
    However, I ended up getting a string index out of bounds exception. I would appreciate it if someone could explain to me why that would be so.
    Thanks

    define wrote:
    for(int i = start; i <= end; i++)
    That should probably be "i < end". This program seems very fragile btw. No checking if indexOf() return numbers less than zero, and ambiguous data..
    To improve your code, you should use better variable names. Also, it's better to use String.valueOf(i) instead of "" + i
    Edited by: paul.miner on Dec 7, 2007 8:53 PM - Typos

  • What's up when you drag and drop a table into a jsp page?

    Hi All,
    I was wondering what's happen in dragging and drop a table into a jsp page. This question because untill yesterday i had an application up and running, with a table displaying a number of rows of the database, and an action associated with an update into a database.
    The action is managed trough JNDI, defined from Preference-Embedded.......
    It was working.
    Then the machine hosting the db changed IP addres. I went into Webcenter Administration console, I've changed the connection string into the jdbc parameters, by updating the new IP address... but it's not working anymore! The log comes out with a big error, but basically it can't connect at the db!
    So, I think there is somewhere some reference to the old db.....where???
    Thanks
    Claudio

    Yes Shay,
    I got this error:
    JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.DMLException, msg=JBO-26061: Error while opening JDBC connection.
    in few hours I'll be able to give you the full stack.
    Thanks
    Clauido
    Message was edited by:
    user637862
    Hi Shay,
    Thanks a lot..you were right.
    I've located the ba4j on the webcenter server...and I've noticed that it was with the old address.
    I think it's a bug, cause on the local machine (before to deploy) this file comes with the right address.
    So next time, before to redeploy a new application, I think I'm going to fiscally delete the folder from j2ee folder.
    Thanks again for the help!
    Claudio

  • What to do when load fails in PC due to bad characters?

    Hi guys
    i have a process chain failing every day because of some bad characters coming in the load. its a text load and due to these characters it fails every day. now what is the proper procedure in production to get this fixed? i know i can edit the bad cahracters in PSA, but i dont know what those bad characters are so what to do ?
    do i go back to the source system fix it there or fix it in BI some how?  can some one explain this with his experience supporting?
    Thanks
    Adnan

    it is not your responsibility to make sure that the data input is right, but you can take the extra effort to make sure tht it is right by asking your business users and then the mm team about it, check in r3, under the mm module try mm03 or mm05 to find is tht material exists, if not there is something wrong, but from the bw perspective tht record is faulty and needs to be corrected if the number of records this happens is very less then make the changes in psa and then load from the psa, if ur using bi then u need to make ur error stanck and error dtp.
    so if the number of reocrds r less then make changes with consent of ur business team but if they are huge then a routine should be written to eliminate all characteristics with #$ and so on, adding it in rskc might be a option if tht material number actually exists with $%$^*&(  those symbols which is most unlikely.
    check with u r business users first, contact the mm team.

  • What exactly happens when you cancel and resubscribe?

    Hi all. I have an extremely simple question -- in fact, I think I already know the answer, I just want a little reassurance. Unfortunately, Adobe has absolutely embarrassingly abysmal customer service to complement some pretty great products. Honestly -- I've spoken to three people by phone who barely speak English and who sound like they're in the midst of a wind tunnel. Went online to chat, and the guy didn't understand my exceedingly simple question. I said the question was about cancellation; he attempted to transfer me to tech support. I told him I'd been on the phone three times with no success. He asked me if I wanted to talk to someone on the phone. Christ's sake, Adobe. Clean that mess up, it's shameful.
    Anyway, all I want to know is what exactly happens if I cancel a single-app Creative Cloud membership, and then resubscribe shortly after? I currently have a month-to-month subscription to Premiere CC. My payment is due on the 4th, but I'm broke. So I assume I have to cancel. However, I plan on resubscribing about a week later, once I have some money.
    So are my projects in any way, shape or form affected? Will Premiere CC simply stop me from accessing the program until I pay up and then re-grant access when I resubscribe? I mean, what exactly happens?
    That's all I want to know. I'm in the middle of editing two large projects, so I'm just looking for some simple peace of mind. Thanks in advance.

    Hi there!
    Thank you for sharing your comments regarding our customer support. Your comments help Adobe guide ongoing efforts to improve our policies, and services.
    If you decide to cancel your membership, the products will revert to the trial version and the product will be accessible for the remaining days of the trial.
    Would you like me to cancel the membership?
    Thanks.
    Arnaud.

  • MacbookPro...what is speed when with iLife08 and  Adobe CS3...?

    I will be buying a 17"Macbook Pro next month and I know that it will ship with iLife08. But am also going to be purchasing Adobe CS3. So with all these graphics heavy programs, any thing I should be aware of in terms of speed, specifically if I am editing a movie in iMovie? or importing a quicktime movie into a Web page design? I'm also going to be getting iWorks to do presentations. Lots of graphics. Plus I will be doing a lot of work editing photos in RAW in Photoshop.
    It's a big investment and want to make sure that it's going to help me with my work rather than cause frustration because editing a movie will take as long as it does now on my G4 Powerbook.
    Do I need to customize the Mac when I purchase it so that it has whatever it needs to run faster? I don't want to have to do this after I've purchased it if I don't have to.
    Thank you from a non-techie type person--so please, in layman's terms! Would appreciate it.

    RAM is very important for the tasks you mentioned, and the price Apple charges at the customization stage on their online store is obscene. Replacing the RAM on the MBP is very easy and I'll paste some links to help you decide whether you'll be up for the DIY install. And yes, you should experience a nice speed bump over a G4, even editing in HD.
    http://www.macsales.com/
    http://www.crucial.com/store/listparts.aspx?model=MacBook%20Pro%202.4GHz%20Intel %20Core%202%20Duo%20%2817-inch%29
    http://docs.info.apple.com/article.html?artnum=303491

  • HT201250 so what to do when its full and doesn't delete old backups? How can I manually get rid of 2010 backups?

    My time machine is full and its SO VERY VERY VERY SLOW SLOW to do anything on it. I want to completelly kill backups from 2010 and 2011. How can I do this? I'd be ok killing all my backups and doing a fresh start.

    Another thought: if you are prepared to delete all your backups (as you say), you could experiment by deleting a few early backups, then testing that Time Machine continues to allow restorations of some test file, and will continue to do automatic backups as usual. If so, delete as many old backups as you want. If TM does not continue to behave after the old backups have been deleted, erase the TM disc and start again.

  • New Finder bug in 10.7.2 - overwriting file w/authenticated move fails and zeroes out target file too

    I have found a new bug in the Finder for Lion 10.7.2
    In 10.7 and 10.7.1, if I downloaded a new version of an application, and wanted to drag it to /Applications or /Applications/Utilities, here is what happened:
    1) Try to drag to one of these protected directories, in order to copy it over the old version.
    2) Get a dialog box saying "The item XXX could not be moved because "Utilities" couldn't be modified." This dialog would have two choices: "Authenticate" or "Cancel"
    3) Click "Authenticate"
    4) Get another dialog: "An older item named XXX already exists in this location. Do you want to replace it with the newer one you're moving?" Choices would be "Keep Both Files" "Stop" and "Replace"
    5) On clicking "Replace", the OS would ask for an admin password.
    6) You would give it, and then the OS would copy the new file. Done.
    Now, in Lion 10.7.2's Finder, after steps 1-5, there is a new dialog:
    "This operation couldn't be completed because some files had to be skipped. For each item, chose File > Get Info, make sure "Locked" is deselected, and then check the Sharing and Permissions section. When you are sure the items are unlocked and not designated as Read Only or No Access, try again."
    "OK is the only choice to exit this dialog.
    AND
    the target file is in fact overwritten with an empty file! So your folder now contains a nonfunctional app, while the new version can't be copied over it!
    You can, in fact, go in and delete the zeroed-out app and drag the new copy into the folder. But authenticated overwriting appears dangerously broken.
    (And what an error message! Sounds like someone from the Windows 2000 team thought that one up...")
    I'm not a developer, but if any registered developers would care to replicate this and file it as a bug, I'd be very grateful.

    Yup. Thomas, have you tried replicating this in the other direction? In Terminal you can make a folder, chown it to root, get the permissions to the same as those of /Applications/Utilities,  then as a normal user, try dragging something
    into that folder? I have - this is replicable.
    This is a real bug - worked ok until 10.7.2, then broke.
    I have worked around this bug by changing the permissions on my Applications and Applications/Utilities folders so that my account has write permission there without authentication. But that not ideal from a security standpoint.
    If any developer out there could fire a Radar report off on this, I'd be much obliged.

Maybe you are looking for

  • Index not used on view when table stats exist

    Hello, I would be grateful if someone comes with ideas on the following problem I'm currently facing. I have a table with XMLTYPE data type column: sql-->desc ACFBNK_STMT008 RECID     NOT NULL     VARCHAR2(200) XMLRECORD XMLTYPE I have a view V_ACFBN

  • How do you save your videos in iMovie to a different location on your computer?

    Since i upgraded to OSX Mavericks imovie keeps switching itself off when trying to export video to DVD. Genius Bar told me i need to save my videos first then delete imovie and then download imovie from the app store. How do i save my videos in imovi

  • WF Policies not working as expected

    Hi , I have created three WF Polices for New, Update and Delete of records. I seem to have two problems. 1. When I create a New Record all the three WF policies (New , Update and Delete) are triggering. 2. When I delete a record I am not able to capt

  • Anyone Know if Zen 4.1 Works in Non-NetWare Environment?

    We are about to migrate our Novell system to Windows, and I am wondering if ZenWorks 4.1 will operate without eDirectory and the NetWare client. We would very much like to retain the NAL window and our existing snapshots rather than have to start fro

  • Trouble with Adobe Application Manager

    I'm getting the above error whenever I try to update any adobe applications.  It claims I have more than one iteration of it open, but my dock claims I only am trying o open the one instance.  Help.  (I'm running cc on a windows 7 laptop.)