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 Mike Lewis 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. matrixxx

    Outlook 2003 is receiving duplicate emails

    Only one user per pop3 account. Never thought about a rule being the culprit. Any body else?
  2. matrixxx

    Outlook 2003 is receiving duplicate emails

    Anybody know of a solution to the receipt the same email multiple times. Some one!
  3. matrixxx

    how do I redirect on submit button click

    clarkin, If Request.TotalBytes > 0 Then works great. the form tag is as follows <form name=&quot;form1&quot; method=&quot;post&quot; action=&quot;<%= Request.ServerVariables(&quot;SCRIPT_NAME&quot;) %>&quot;> thanks jonathan, but this time all the coding is on one page. thanks for all...
  4. matrixxx

    how do I redirect on submit button click

    lebisol, I tried that and it didn't work. I found a way to make it work: <% If Request.form(&quot;LName&quot;) <> &quot;&quot; Then Response.redirect(&quot;s_done.htm&quot;) End If %> but I still would like to know how to use the submit button onclick approach.
  5. matrixxx

    how do I redirect on submit button click

    Basically I have a form that I use to submit data to a database. this works fine. My problem is when I try to redirect the user to a your request has been submitted page. I tried setting a var to do this: <% sent = 0 code sent = 1 if sent = 1 then response.redirect(&quot;page&quot;) %> but...
  6. matrixxx

    I have this sub routine that valida

    Got it working. To make it work i had to move the if statement before checking for isnumeric. Sub Check_Phone(fvalue,dname) If len(Trim(fvalue))=0 Then ErrCount=ErrCount+1 AddErr(Cstr(ErrCount) + &quot;. &quot;+ dname+ &quot; cannot be empty&quot;) else If instr(fvalue...
  7. matrixxx

    I have this sub routine that valida

    I changed instr to convert fvalue to a string, no go. If instr(CStr(fvalue, &quot;-&quot;)) <> 0 then ErrCount=Errcount+1 AddErr(CStr(ErrCount) + &quot;. &quot; + dname + &quot;phone number doesn't need to hyphenated&quot;) End If I changed instr to: If instr(fvalue...
  8. matrixxx

    I have this sub routine that valida

    I have this sub routine that validates a phone number. Everything works(i think) until i get to the instr. The purpose of the instr is to flag an error if the user puts a &quot;-&quot; in the string. Now I have two questions. One if I am checking to see if it isnumeric, shouldn't the...
  9. matrixxx

    ms word receives system error &amp;H800040005 when opening shared file

    Thanks Dreamboat. I would consider it an OS problem if it happened with all applications, at all times. This seems to affect Word and with some docs it happens all the time and others it happens some of the time. Weird[sadeyes]
  10. matrixxx

    ms word receives system error &amp;H800040005 when opening shared file

    Hey, I have a win XP machine that acts as the server sharing the files. I have a win 2000 machine (office 2000) that accesses the shared files. PowerPoint and Excel seem to be able to open the shared files with no problems, but when I try to access the shared files with word I receive system...
  11. matrixxx

    validation logic help

    when i input a value(1234) it doesn't appear to work. the strange part is, when i return to the input page there is an error that the phone no. doesn't appear to be a valid number. my script is suppose to maintain the values and let the user resubmit. but it submitted, so the fields were...
  12. matrixxx

    validation logic help

    Hello, the following validation is giving me problems when it checks for the number of numbers entered in the phone field. The script checks first to see if the field is not empty, then checks to make sure its numeric. both seem to work fine. the next if statement checks to make that there is...

Part and Inventory Search

Back
Top