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

  1. maynard444

    Sending multiple emails with asp and cdonts question????

    Here is the code for the asp page. This is the original code page with no modifications. I'll clarify one point: I need two different emails to come from one asp page. The second email will go to another area, and have different information than the first email. <!--#INCLUDE...
  2. maynard444

    Sending multiple emails with asp and cdonts question????

    Hello All, I am wondering if there is a way that asp and cdonts can email more than one person from one asp page. Here is what I want to do. 1. Collect information from a form and send to asp script. 2. ASP script will then send 2 emails with different formats to different addresses. I found...
  3. maynard444

    Help with printing in Java

    Hello all, I need a little help with this code. I am attempting to print an image file when a button is pressed. Here is what code I have now: This is in the main method: JButton print_button = new JButton(&quot;Print&quot;); print_button.addActionListener(new ActionListener() { public void...
  4. maynard444

    Can you run a Microsoft Access Macro with Java/JDBC

    I just need to know if there is a way to run a macro or query that is resident in a database in Access. I have found no answer after searching for hours, and It's been a while since I have programmed in JDBC, plus I'm on a time crunch to get it done. Any help would be appreciated. Thanks Heath
  5. maynard444

    Inserting a carriage return and outputting to a file

    here is what I have right now: import java.io.*; import java.util.*; public class Split { public static void main(String[] args) throws Exception { StringBuffer fileAsStringBuffer = new StringBuffer(); BufferedReader input = new BufferedReader(new FileReader(&quot;text.txt&quot;))...
  6. maynard444

    Inserting a carriage return and outputting to a file

    This works well if I want to output this information to the console. I need to do the exact same thing this program does, except I need it to print out to a file in the exact same format. That is where I am having the problem.
  7. maynard444

    Inserting a carriage return and outputting to a file

    Hi all, I am lost on how to insert a carriage return after a ~ and export that to a file. I am pulling a file into a string buffer. At this point I would like to output to a file with carriage returns instead of one long string.The file is a text file (txt). Here's what I have...
  8. maynard444

    Removing Punctuation from a string

    Thanks, that does exactly what I need. Heath
  9. maynard444

    Removing Punctuation from a string

    Hi all, I need some help in removing the punctuation from a string. For example: I want O'KEEFE to look like OKEEFE Any info would be helpful. Thanks, Heath
  10. maynard444

    help with disappearing cookie

    Howdy neighbors, I need some assistance with some missing cookies. At first I thought the computer was just eating them, but then I woke up. Ok first I will lay out what i am working with. I start out with an index document. It has several different links on it that call functions to set a...
  11. maynard444

    reload cookie in text field after reseting page

    Does anyone know a way to reload a cookie into a text box after hitting a reset button on that form. The textbox is initially set to the value of the cookie when the page is opened. The reason I need a cookie to load the text is I am using a generic form template for data entry, there are...
  12. maynard444

    pulling substring from a field containing a comma

    Thanks for the help,it's exactly what i needed. maynard
  13. maynard444

    pulling substring from a field containing a comma

    All right, here is my question: I am trying to pull a string from a field that contains a comma. This is an employee name field, and all I want to pull out of it is the last name of the employee. So if the record contained: Smith, Bob I would only want to pull the substring before the...

Part and Inventory Search

Back
Top