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 Chriss Miller 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: *

  • Users: timmbo
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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")...
  4. 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...
  5. timmbo

    Dynamic Select box load to variable

    Hi All, Trying to load the options contents from my selection box SelectedAccounts to a variable. I move accounts from AvailAccounts to SelectedAccounts via js code. When I hit submit button, code cycles through each account in the SelectedAccounts select box but does not load variable...
  6. timmbo

    Searching control for negitive (-) sign.

    Hi All, I have an input textbox the user enters numbers into. I only want the user to enter positive numbers. I wrote this function that checks the contents of the control - searching for letters or "-" negitive sign. It picks up the letters fine. But does not pick up the "-" sign. My code...
  7. timmbo

    focus() not working when within div id tag

    Hi All, I have a webpage that has some controls enclosed within div id tags. My problem is when I try to set focus() on a control withing that tag, I get null or not an object error. focus() works fine when not using div id tag. Do I have to reference the id name? If so, how do I do that...
  8. timmbo

    Newbie Qs Links

    Hi All, I have a table displaying data from my Access DB. I'm attempting to display links in the table to the webpage. When the webpage rendors, the links appear as text #http://xxx.yyy.zzz# not a link. How would I fix this? Below is my code. <td><%# DataBinder.Eval(Container.DataItem...
  9. timmbo

    JavaScript to CSV/Excel

    Hi All, I'm attempting to pass information via JavaScript to Excel via CSV format. I have a field that dispalys as Bank Name, Bank Location. Example: Money Bank, Somewhere USA When I migrate the field to Excel, Excel populates the information in two cells not one. Example: Cell1: Bank...
  10. timmbo

    Extreme Newbie Qs.

    Hi All, My apologies for the simple question. Never ksh scripted before... This is what I want to do. I have a file which calls forteen separate .dat files loading them to an Oracle DB. Example of calling script: #!/bin/ksh -p IR_ROOT=/opt/app1/datasvr date +'*** %c Started PDR DEV...
  11. timmbo

    Passing outside variable into JS.

    Hope you gurus can help me. I am passing a variable, gstrRptTitle, from a reporting tool into a method, Sub Start, containing JS loaded into a string. This string, dhtmlCode, is utimitely passed to the web as a link. The problem is gstrRptTitle is not being populated. I confirmed that...
  12. timmbo

    Java variable into JavaScript

    Hi All, Attempting to place a java variable, userInfo, into JavaScript code. Can't get the syntax right. Can someone help me out. document.write('<a...
  13. timmbo

    Searching a String

    Hi All, I have a string containing date/time. What I need to do is seperate the two into two different variables(strings). The date/time string to be seperated would look something like - 6/1/2004 08:00 AM or 10/22/2004 11:59 PM, etc... What would be the easiest way to break this up. Does...
  14. timmbo

    String to timeStamp

    Hi All, Have a jsp variable returning a string "dateFrom" containing "06/10/2004 06:00:01 AM". When I put it to the timeStamp variable, the time is dropped. The date appears in the timeStamp okay. How would I get the time into the timeStamp variable. if(infoReport.getDateFrom() != null)...
  15. timmbo

    SQL Time Problem

    Hi All, This should be easy for you gurus out there. I am trying to get a return dataset based off of time. Say a user enters a beginning time of 09:00 and an ending time of 10:00. I would like to return all records between and including 09:00 and 10:00. Here is the query I'm currently...
  16. timmbo

    Package Body Error

    Hi All, Attempting to create my first Package. I am getting the following error and not sure what needs to be done. Any comments and/or suggestions are most welcome. I'm using Oracle 8i. PLS-00323: subprogram or cursor 'ARCHIVE_PS_RELATIONSHIP_UPDATE' is declared in a package specification...
  17. timmbo

    Package Body Error

    Hi All, I'm attempting to create my first Package and having the following error in 8i. PLS-00323: subprogram or cursor 'ARCHIVE_PS_RELATIONSHIP_UPDATE' is declared in a package specification and must be defined in the package body Can someone tell me where I'm going wrong. I've look at...
  18. timmbo

    Passing Java Vector to JS Array - Can this be done?

    Hi All, I have a Java Vector, custNames, and I want to pass the contents of the vector to a JS Array. If it can be done, can someone tell me how to do this?! Thanks for the help. Tim
  19. timmbo

    Parse String

    Hi All, I am trying to parse a string containing an account number and unitID. The string being passed looks like this. %20%20%20%20%20%20%20%20%20%20%20%201014310995%28S1%295BSub%201%20Account%5D I need to extract 1014310995 and S1 loading to their own variables. Can someone give me any...
  20. timmbo

    Parse String - again

    Hi All, Thanks for the help on my last parsing question. I have a twist on this and not sure how to handle. Any help would be most appreciated. I need to parse a string consisting of an account number and a unitID. Below is the string I need to parse...

Part and Inventory Search

Back
Top