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 strongm 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. woodje

    email contact form with CDO using asp page

    vicvirk, I made your change I am not getting an error message the email is coming thru. However the form variables are not populating. I have also made the changes you requested. I have included the new code below. <% Dim ObjSendMail Dim iConf Dim Flds set reg = New RegExp reg.Pattern =...
  2. woodje

    email contact form with CDO using asp page

    The problem seems to be in the wording to try and put the contact name from the form and append it to the text in the subject field. If I rewrite the code to read ObjSendMail.Subject = "A message from your Contacts Page from " Then the email will go thru to its destination however it will...
  3. woodje

    email contact form with CDO using asp page

    Here is the full error message. Microsoft VBScript compilation error '800a0401' Expected end of statement /contact.asp, line 31 ObjSendMail.Subject = ""A message from your Contacts Page from " & name &"
  4. woodje

    email contact form with CDO using asp page

    Hello, I have a form in html that I am trying to email the contents to a location using an asp page. I have included the code for the form and the asp page below. When I exectue this I am getting an http 500 internal error. Page can't be displayed. When you use the submit button or try to...
  5. woodje

    email form contents from html using asp

    I will make that change once we have it working thanks for that advice.
  6. woodje

    email form contents from html using asp

    Yes it is in the same directory and I get the same error when I try and go to the contact page directly.
  7. woodje

    email form contents from html using asp

    Here is the contents of the url. http://www.jcfl.com/contact.asp?client_name=Jeff+Wood&client_senderemail=somebody@comcast.net&client_message=This+is+a+test.&client_contactway=email&client_contacttime=&submit.x=33&submit.y=9
  8. woodje

    email form contents from html using asp

    Thanks for the response I made the change you requested. I am gettting the page cann't be displayed. I restarted IE as well.
  9. woodje

    email form contents from html using asp

    Hello, I have a form in html that I am trying to email the contents to a location using an asp page. I have included the code for the form and the asp page below. When I exectue this I am getting an http 500 internal error. Please take a look and let me know your thoughts. Jeff Form *** <form...
  10. woodje

    Need to check if a file exsists before importing csv file

    ssatech, Thanks for the response. How can I use your code to check the file name in one directory and then see if that file exsists in another directory with the same file name with a file extension of "_done".
  11. woodje

    Need to check if a file exsists before importing csv file

    Thought this might help. This is the VBA code I am using to import the file and then move the file and change the file name. Private Sub cmdGPDataImport_Click() On Error GoTo cmdGPDataImport_Click_Err Dim intResponse As Integer intResponse = MsgBox("Warning: You are about to Import...
  12. woodje

    Need to check if a file exsists before importing csv file

    Hello, I need to check to see if a file name exsists in a directory. If it does I need to error out and send a message to the user. If the file does not exsist then to import the csv file to an Access 2000 database. I have the code to import the csv and to move the file when complete I just...
  13. woodje

    Parsing data on a form from a single table file

    Hello, I have a table x with field17 and in this location I have a group of text of "CFACCESM04/18/05". I need to split this data from the table to 3 text boxes labeled txt1, txt2, and txt3. The first box (txt1 = the first 5 characters). The sencond box (txt2 = the next 3 characters). And the...
  14. woodje

    unbound value list as criteria in a query

    Hello, I have an unbound form with a value list that is displaying values of (YYYY-MM) for all of 2005. When you press the cmd button it is calling a query that is using this value list to drive its criteria. However the query is bringing back no data. When I remove the form and field criteria...
  15. woodje

    importing a .csv file to access 2000

    PH, Thanks for the help. I can see where that would work. However I am having am having problem figuring out where I should place it in my exsisting code. I have included that code below. Dim cFILENAME As String Dim cPath As String Dim cFile As String cPath = "F:\GA ATL...
  16. woodje

    importing a .csv file to access 2000

    Hello, I need a little help here. I am using access 2000 and I am importing several .csv files to tables. The problem is that I am receiving about 14 files a day. The users sending these files to me are sending the file with a file name of "ca.dypdmrg.20041027.csv" and whenever I try to...

Part and Inventory Search

Back
Top