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 TouchToneTommy 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. shef015

    Problem with exporting JSP page to excel format

    I am trying to export a JSP page to Excel. The problem I have encountered is that Excel tries to format the string I have. For example it take 11E062 and converts it to 1.10E+63. In other words it takes some of my strings and converts them to scientific notation. Here is the code...
  2. shef015

    Anyone ever use Oracle Workflow???

    I am looking into using Oracle Workflow for helping with a Help Desk Application. I don't comprehend how it integrates with Oracle though. I am writing the site in Java so they will be interacting. I need something to funnel emails to the proper department/people depending on the issue. Any info...
  3. shef015

    Anyone ever use Oracle Workflow???

    I am looking into using Oracle Workflow for helping with a Help Desk Application. I don't comprehend how it integrates with Oracle though. I am writing the site in Java so they will be interacting. I need something to funnel emails to the proper department/people depending on the issue. Any info...
  4. shef015

    Dynamically Working with Form Action and Input

    I got it. I just had to remove the quotes from the true and false. I really hate trying to learn another syntax. I would love to know why they named it javascript when there is no java.
  5. shef015

    Dynamically Working with Form Action and Input

    ya i figured that out pretty quick with the jsp and javascriptt interaction. some of the stuff i have seen other people do just makes me try to figure out the details of it. The disabling part is what i am working on now. It only works in the InitPage() function. It doesn't disable and enable...
  6. shef015

    Dynamically Working with Form Action and Input

    ok i did figure it out. It was a simple little problem that i had overlooked in the beginning when i wrote the page. The options had no values assigned to it, therefore the case could not read them. Now I am trying to work with the disabling and enabling of the inputs. I didn't see your...
  7. shef015

    Dynamically Working with Form Action and Input

    ok i did figure it out. It was a simple little problem that i had overlooked in the beginning when i wrote the page. The options had no values assigned to it, therefore the case could not read them. Now I am trying to work with the disabling and enabling of the inputs. I didn't see your...
  8. shef015

    Dynamically Working with Form Action and Input

    well i am thinking it is having problems with the case statement. It does not give the alerts when a new option is picked from the select. I think something is wrong in that area. As a last resort I had thought of just passing everything to an empty jsp page to funnel to associated pages. But...
  9. shef015

    Dynamically Working with Form Action and Input

    Ok, first off I am not a fan of using Javascript. I do most of my coding in JSP so when I work with Javascript along with that I get a headache. So I am basically a beginner with it. My problem is have a select that has to options(Insert, Update). If insert is selected, it should set the form's...
  10. shef015

    Good books for learning JSP?

    I am starting work with JSP and Servlets soon and need some good reference material in order to learn it. I have used Java before along with Javascript, ASP, and other languages; so I know coding. I purchased Wrox's Professional JSP 2nd Edition and was wondering if there are any other good books...
  11. shef015

    best way to call access 97 reports in vb???

    ok now i am stuck with the syntax issue. I am thinking it is more an issue of the report setup than the how i am doing it in VB. i am using a query to get all my reports data, it asks for a user id using [Forms]![OrdersForm]![OrderID] so this is what i got... strWhere = "Where...
  12. shef015

    best way to call access 97 reports in vb???

    ok, now access says it can't open the database cause it is already open or is missing. can i somehow use my conn db connection that is setup? here is my code now... 'reportPath is linked database to the main one used on a server reportPath = GetSetting "HHMCat", "Startup&quot...
  13. shef015

    SQL update not working with Access 97

    ok thanks for the help
  14. shef015

    best way to call access 97 reports in vb???

    how do i do the where statement for the Report though? i keep getting syntax statement errors when i try running it. i need to pass oId to the report in order to run it
  15. shef015

    help summing up totals outside the details field!!!

    ya i figured that, thanks
  16. shef015

    best way to call access 97 reports in vb???

    here is my code for that. my db is already open though using adodb. what do i dim app1 to be? i had it as Access.Application and nothing happened, appl.OpenCurrentDatabase App.Path & "dbpath" appl.DoCmd.OpenReport "InvoiceReport",acViewNormal, , "WHERE...
  17. shef015

    help summing up totals outside the details field!!!

    inside my details field i calculate a tax amount and extended amount for each purchase. for some reason the sum function at the report footer does not seem to want to read what is in the extended amount area or the tax amount. anyone have any suggestions or info?? thanks
  18. shef015

    SQL update not working with Access 97

    my update statement refuses to work for some reason. I have no clue why it doesn't work. I am connected to an Access 97 database. I delete the records in OrdersDetail(a child table to Orders) before running the update. here is my code, any help would be great order = "Update ORDERS SET...
  19. shef015

    finding an autonumber after inserting data into its table??

    actually i got it working though it wasn't really a good way of doing it. i am querying the database for records with the customerphone, date, and cost being the same as the record i just inserted, and have it return the orderid. works fine now but will try other ways when i have time, project...
  20. shef015

    best way to call access 97 reports in vb???

    whats an easy way to call reports in VB from Access? I need to call an Invoice Report with the parameter of the Order Number passed to it. any help or suggestions would be much appreciated, thanks.

Part and Inventory Search

Back
Top