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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. timmbo

    Vector Null Exception

    That did Venur. Thanks for the help...
  2. timmbo

    Vector Null Exception

    It's in public Vector getACHFormatedAccouts(Vector _unFormattedAccts) throws ISCException { Vector acctResults = null;
  3. timmbo

    Vector Null Exception

    I should have mentioned that variable myResults is not null. [5/2/05 14:40:17:745 EDT] 3cbafc2d SystemOut O ******myResults is ... ABC Co [ABC] [9876543210]
  4. timmbo

    Vector Null Exception

    Hi All, I have a method called to format data to a vector a certain way. Everything goes fine adding my format to a string myResults in j==3 if but when the code attempts to load the vector, acctResults.addElement(myResults);, I get a null pointer exception. This is the call to the method...
  5. timmbo

    Suppress Dialog Box with history.go(0)

    I got it. I just href'd back on the page. Everything cleared and reset. Thanks again everybody.
  6. timmbo

    Suppress Dialog Box with history.go(0)

    Thanks Kaht for the suggestion. reset() works fine for my controls. But I am dinamically loading some account numbers and reset() does not load them back to the original select box.
  7. timmbo

    Suppress Dialog Box with history.go(0)

    Thanks for the help Dan. I used your suggestion but still getting the same dialog box. Any other ideas?!
  8. timmbo

    Suppress Dialog Box with history.go(0)

    Hi All, On my form is a button - clear. When the user clicks the button, javascript is called inititating history.go(0) command. While the screen is re-inititalizing, I get this Dialog box stating: "The page cannot be refreshed without resending the information. Click Retry to send the...
  9. timmbo

    StringTokenizer

    I think I found the problem. I'm using java ver 1.3.1. Thought I was using 1.4...
  10. timmbo

    StringTokenizer

    Here is the code... package com.pnc.tms.ach.reports; import java.util.Vector; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import com.pnc.tms.ach.ejb.ACHReportEJB; import com.pnc.tms.ach.ejb.ACHReportEJBHome; import com.pnc.tms.ach.ejb.ACHReportEJBKey...
  11. timmbo

    StringTokenizer

    Yep, copied it right off the board.
  12. timmbo

    StringTokenizer

    Thanks timw. I got that one...
  13. timmbo

    StringTokenizer

    Thanks for the help sedj and all. Forgive me but I'm still having trouble with .split(). I entered String [] weAreYourTokens = ((String)acctNames.elementAt(i)).split("%5B"); and I'm getting the error "The method split(String) is undefined for the type String". I added import...
  14. timmbo

    StringTokenizer

    Thanks for the help Diancecht. String [] weAreYourTokens = (String)acctNames.elementAt(i).split("%5B"); I tried your suggestion and getting the following error. The method split(String) is undefined for the type Object.
  15. timmbo

    StringTokenizer

    Thanks All, How would I use the split() with (String)acctNames.elementAt(i);. Thanks.
  16. timmbo

    StringTokenizer

    Hi All, Trying to parse a string using StringTokenizer. The line I'm attempting to parse acctNames.elementAt(i) is: AA%20Test%20Inc%20%5BAAB%5D%20%5B1111111111%5D Here is my code for parsing: ... StringTokenizer sTokenizer = new StringTokenizer((String)acctNames.elementAt(i), "%5B")...
  17. timmbo

    Package Body Error

    Thanks much lewisp. That did it.
  18. timmbo

    Package Body Error

    Hi All, I'm getting the following error when compiling my package. PLS-00323: subprogram or cursor 'CREATE_ACH_REPORT' is declared in a package specification and must be defined in the package body Can someone please tell me what I'm doing wrong. Following is my package code. Package...
  19. timmbo

    Dynamic Select box load to variable

    Thanks for your help Dan. I got it. I replaced .value with .text and it's working fine now. Old code: if (i == 0) { output += escape(document.forms[frmName].SelectedAccounts.options[i].value); alert("output1 is ... " + output); }else { output += ',' +...
  20. timmbo

    Dynamic Select box load to variable

    SelectedAccounts option is loaded - dynamically. I tried you suggestion by adding a value to Selected Accounts and got the same result. I'm beginning to think I have something else going on in my code.

Part and Inventory Search

Back
Top