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!

Search results for query: *

  • Users: crguy
  • Content: Threads
  • Order by date
  1. crguy

    Sending Email to multiple TO

    Hi, I have a Java class SendMail.java (code below). I have a jsp page that send the required parameters to the Java class. (code below). Everything works as it should except when I try to send it to multiple people in the TO field. Can anybody direct me on how to fix this problem? Thanks...
  2. crguy

    Hi, I apologize in advance for t

    Hi, I apologize in advance for the multiple questions. I have a JSP application that is located in the following directory c:\jsp The application has the regular directory structure (WEB-INF etc.) I create an Oracle report, and placed the reports_tld.jar in my lib folder within my web...
  3. crguy

    JSP Report

    Hi, I am creating a report in JSP with Oracle backend. My report needs to be displayed in a html table (this is not a problem). Unfortunately, the first column repeats itself over and over again. Is there anyway to suppress duplicated values in JSP? Thanks in advance. VC
  4. crguy

    Update Statement Help

    I have the following method, what I don't understand is how I need to process the statement. Can anybody direct me on how to do this? Thanks public void updateStudentInformation(StudentInformation stInformation) throws Exception { if (conn != null) { try {...
  5. crguy

    Scrollable ResultSet

    Hi, Here is a part of my code: Statement myStatement = conn.createStatement( ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE) ResultSet customerResultSet = myStatment.exceuteQuery( SELECT ID, NAME FROM EMP WHERE ID = 2 ); Do I need to create a separate class that will do the...
  6. crguy

    JSP and JavaBeans

    Hi, I am new to Java. I have a JSP page that will pass a customer ID to getCustName.java. I do not know how to write a simple select statement JavaBean that will take the custID and select the custName and then in turn send it to another JSP page. Can anybody help with this? Thanks VC
  7. crguy

    Passing parameters in Batch Mode

    Hi there, I am wondering if this could be done in Crystal. I need to pass parameters in some batch form, or url that will invoke Crystal as a desktop application, not on the web. Right now this is what is going on: Webpage: User pickes a deprtment that they want to query. PARAMETERS ARE PASSED...
  8. crguy

    OCP TBT Bundle

    Hi there, Have any of you used or heard about Oracle's TBT (Technology Based Training) Bundle? Is this a good reference to getting certified? Also I am interested in getting the Internet Application Developer Certification. any jobs out there in this field? Thanks crguy
  9. crguy

    Program--Scheduler

    Hi, Here is my problem. I need to create a procedure that will schedule 100 students into 5 courses. Each student must take each of the 5 courses, just at different times. Each course has a limitation as to how many students it can take and therefore there will be more than one location for...
  10. crguy

    Date Range Problem in Cystal Reports 8.5

    Hi there, My report contains a field &quot;termination_date&quot;, and I would like to have parameters that specify a range of dates so that all &quot;termination_date&quot;s in that range are picked. Here is the formula that I am using, but it does not seem to work. (IF {?Start Date} <> DATE...
  11. crguy

    Link Tables

    Hi I am trying to link 2 tables from 2 different datasources. It would be easy if there was a common indexed field but there isn't. I need to link the tables by table 1: person_id (9 digits) table 2: person_num (7 digits) The person_id is '15'||person.num to make it 9 digits. How can I link...
  12. crguy

    Report Documentation???

    I have several clients with dozens of reports per client. The problem is that report reuse between clients leads to different versions of essentially the same report, with minor differences between them (section visibilities, name lengths, etc.) Does anyone have a good way to track these...

Part and Inventory Search

Back
Top