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. nat1967

    Help with my formmailer.pl script

    The file that you are trying to execute does not have the correct permission to be executed on your server. On UNIX the CGI script must have 755 or rwx-rx-rx permission in order to execute. have you set your permissions? Have A Great Day!!!, [bigglasses] Nathan Project Manager III...
  2. nat1967

    dual forms with hidden div

    hi everyone, i am trying to create a form tht gives the user two choices for requesting a quote. one form is for screen printing and the other is embroidery. what i want to accomplish is: start off with both forms hidden ask the user to select which they want by use of a button or...
  3. nat1967

    Loading Access DB over slow WAN

    I agree with Alec. 250 meg is VERY large for a front end. Here is a great resource for speeding up Access and some general advice on maintainence: http://www.granite.ab.ca/access/performancefaq.htm It sounds as if your WAN is over a DSL connection. I have VPN setup so I can work from home...
  4. nat1967

    Get rid of the / in emails

    HI KarveR and sleipnir214, I just wanted to say thanks for pointing me in the right direction. I have reviewed PHP.net for the information you gave me and now I understand what was happening. I have made the changes and everything works fine. Thanks again! Have A Great Day...
  5. nat1967

    Get rid of the / in emails

    HI everyone, I have a form on a website that allows the user to send comments to a pre determined email address. The problem i cant seem to get around is when the user uses quotes "" in their email. The email comes to me formatted like: /"text"/ I have looked at php.net and reviewed a...
  6. nat1967

    email using outlook express

    hi m4moi outlook express is not "programable". it does not have a object model to work with. However, Outlook does have a object model to program from. there are two possible path forwards. 1) use outlook express and send object to send your email. you can build the 3 email addresses...
  7. nat1967

    VBA Corrupt Message!

    Hi, I have seen this before and its not good, my friend. do your backup files work? here is a link to MS Knowledge Base which might give you a path forward. http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/Q248/9/60.ASP&NoWebContent=1 good...
  8. nat1967

    losing the www

    hi everyone, i am just drawing a blank on this one. i am sure its simple but my head is stuck in the box. on my website, www.skylineprints.com, i have a link to go to my store. the link is written as: www.skylineprints.com/store/ However, if you click the link, the address bar changes...
  9. nat1967

    Filesize of Front-end Database

    throw in another 2 cents.... the file sizes are pretty small for Access. I have seen much larger in use. however, one thing that always helps reduce the size of the mde file is to run a DeCompile then compact/repair. The decompile will strip out useless code and stuff that might be lurking...
  10. nat1967

    Creating an Email from data on form

    hi Dimandja, I agree. However, it would still allow you to send the email. The problem with SendObject is that it just fails completely. The Outlook popup warning is annoying but it does allow for the email to go. There just isn't a pretty solution anymore. :-( Have A Great Day...
  11. nat1967

    Creating an Email from data on form

    hi, The problem you are seeing is one of the challenges that came out of some of the Anti-Spam/Email security patches from MS. The one of the ways around this is to code to use Outlook instead of SendObject. More coding involved but more consistent with executions. also, be sure you have...
  12. nat1967

    Run Code Every Certain Amount of Days or Logins

    HI alex, One thing that jumps to mind is to build a table with 1 column. In the column have a "counter". By counter, have a number that you can increment each time the form is opened. When that number is reached, have the module executed. Kinda like: if intCounter = 5 then blah blah...
  13. nat1967

    LOAD wont work so...

    Tony, what can i say.... WHOA!!!!!!!!!!!!!!!! my god ... i have been going around the world. no wonder i am so tired at work. :-) Thank you very much. your example has shown me the light. it makes sense now. worked like a charm. Have A Great Day!!!, [bigglasses] Nathan Project...
  14. nat1967

    LOAD wont work so...

    HI BNPMike, I refered to LOAD because I have been trying to use the LOAD DATA INFILE or LOAD DATA LOCAL INFILE through MySQL query interface my ISP provides. I am now being told from my ISP that this option is not activated for security reasons. So, I am now trying to find alternatives...
  15. nat1967

    LOAD wont work so...

    Hi everyone, i am stuck and need some advice or direction. i have a web store that has about 1000 items in different catagories. i want to add a new catagory with 300 records. This new catagory is EXACTLY like one of my existing catagories with just one exception. Currently, I must...
  16. nat1967

    Display an Image on web page

    hi drj478, i am fairly new to PHP so i am having a little trouble piecing it together. here is what i have: foreach($_FILES as $file_name => $file_array) { $rnd = sprintf("%08d", floor(rand(0,100000000))); if (is_uploaded_file($file_array['tmp_name'])) {...
  17. nat1967

    VBA in Access To Send Email through Outlook

    hi caryisms, i responded to your other thread (thread705-783554) on this subject. let me know if it helps. also, check out my faqs: faq702-4509 and faq702-2921. Have A Great Day!!!, [bigglasses] Nathan Software Testing Lead www.skylineprints.com
  18. nat1967

    VBA Code In Access To Send Email

    OOPSS!!! i forgot one thing. i agree with Robert. I would break out the variables '*****begin**** Private Sub Command0_Click() Dim db As DAO.Database Dim rs As DAO.Recordset Dim txtTO as String Dim txtCC as String Dim txtBCC as String Dim txtSubject as String Dim txtMessage As String txtTO...
  19. nat1967

    VBA Code In Access To Send Email

    Hi Caryisms, your code is close. take a look at the below modified code. this should work for you. '**************begin********* Private Sub Command0_Click() Dim db As DAO.Database Dim rs As DAO.Recordset Dim txtTO, txtCC, txtBCC, txtSubject, txtMessage As String txtTO = "" txtCC...
  20. nat1967

    Display an Image on web page

    Hi group, on my web site, a customer can upload a picture to my host server. i would like to display that picture to the customer so they can verify they uploaded the correct one. currently, my code allows them to choose the picture using a form, then i upload it with PHP. all this works...

Part and Inventory Search

Back
Top