Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Acidcrawl

  1. Acidcrawl

    ultra date validation?

    I believe this to be an unreasonable request because it would be impossible to match the data to any one format without asking the user for SOME information. For instance say a user entered 030303, and it was supposed to me mmddyy, well this would also match ddmmyy or yymmdd. It's simply...
  2. Acidcrawl

    Strip/Convert Alphanumeric to Int

    Replace: for (int intIndex = 0; intIndex < title.length(); intIndex++) with: for (int intIndex = 0; intIndex < foo.length(); intIndex++) If you see anything else in there that says "title" change it to "foo".
  3. Acidcrawl

    Strip/Convert Alphanumeric to Int

    This code should do what you need it to do. public int returnNumbers(String foo) { char charArray[] = new char[0]; String strReturn=""; if (foo.length() > 0) // must have 1 digit at least { charArray = new char[foo.length()]; //instatiate char array...
  4. Acidcrawl

    Octel Command Language (OCL)

    I need anything related to adding, changing or deleting mailboxes through OCL, anything syntax related. It would also help to know what the protocol is for talking to the Octel through the OCL connection. Ken, I think you have my fax number, if you wouldn't mind that would be great. If you...
  5. Acidcrawl

    Octel Command Language (OCL)

    I'm pretty sure the RDAC only gives you the menu based system. As far as I can tell the OCL interface is only accessible through the LAN. What sucks about this is that even when you telnet to the Octel on ports 4001 or 4002 you don't get anything. You are able to connect, but you don't even...
  6. Acidcrawl

    Octel Command Language (OCL)

    Ken, were you ever able to get that book?
  7. Acidcrawl

    Octel Command Language (OCL)

    I also have the same problem and need some documentation. I was wondering how much it would cost for the documentation you have. Also do you have the document in soft copy? Does the documentation explain how to write Octel command language commands? Any help with this would be very helpful.

Part and Inventory Search

Back
Top