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 SkipVought 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: patricktwo
  • Order by date
  1. patricktwo

    setting up Jbuilder with sourcesafe

    I am trying to set up Jbuilder and using SourceSafe to provide configuration management. We are using java and jsp. The current directories we use are: java source folder java jsp folder WEB-INF (subfolder) classes (subfolder) lib (subfolder) The java source...
  2. patricktwo

    import jar file

    I am trying to import class files from a jar file. The code is below: import java.io.Serializable; import java.util.HashMap; import de.laures.cewolf.DatasetProducer; import de.laures.cewolf.DatasetProduceException; import...
  3. patricktwo

    Get String from recordset field

    We are upgrading our system to server2003 and have to change the method used for email. We get a recordset from a database as follows: toEmail = recordset("email") When we try to send mail with this it errors out. It seems that a field object is being moved to the toEmail variable. I have...
  4. patricktwo

    Using JFileChooser on the Web

    I found that I could not use JFileChooser. It was an application running on my machine. It was for a class project. The way I got around it was to have the user input the file name. Thanks anyway.
  5. patricktwo

    Using JFileChooser on the Web

    Can I use JFileChooser to list files on the web at a given URL. If so, how do I go about it. If not how do I select files to open on the web.
  6. patricktwo

    try...throw new ...catch

    I found that to have a named exception, you have to compile a separate class that names the named exception. Your reply got me to thinking about that. Thanks.
  7. patricktwo

    try...throw new ...catch

    I am writtin a proggram for a class, I have to use exceptios. I have written this: public void checkFirstNameInput() { try { if(sFirstName.length() == 0) throw new FirstNameException("No Entry")...
  8. patricktwo

    update table from report

    I found a missing bracket at remitAmt. Now I get error "3061 to few parameters expected 5."
  9. patricktwo

    update table from report

    I'll try the first one. I originally used qbe to created the query, but it used joins and I got a message that joins were not supported. I then rewrote it without the join.
  10. patricktwo

    update table from report

    I am running a report and on the close I want to update a table in VBA. I am using the following SQL. Private Sub Report_Close() Dim strSQL As String strSQL = "UPDATE checks set rptStateone = yes, pdToState = yes " strSQL = strSQL & "WHERE (pdToState = no) AND (rptToState = NO)...

Part and Inventory Search

Back
Top