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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Julian4145

  1. Julian4145

    Single text field submit problem

    Its not the javascript. Whether the javascript is even there or not does not affect my problem. Maybe I didn't explain it clearly. The problem I am having is when a user enters a value in the txtID field and presses the enter key (as opposed to clicking on the btnFind with the mouse) the page...
  2. Julian4145

    Single text field submit problem

    Here's my code. I added the onSubmit event to the EditTimestamp Form. So now when I hit enter the validation is executed and then the page submits, but I'm still not getting results. But if I click on the Find button, instead of hitting enter I do get results. 'txtID Validation <script...
  3. Julian4145

    Display message when no matches in database

    Whats the error you are getting? Regards Julian
  4. Julian4145

    Single text field submit problem

    Hi All, Been working on this a couple days now and can't seem to find a way around it. Apparently, when a form contains only a single text field and a submit button, hitting the enter key does not pass the submit button's name/value pairs. The only way the user can submit the form is too click...
  5. Julian4145

    XP Pro Novell Roaming Profiles crashing a VB app

    Hey all, Any ideas on this one would be greatly appreciated. I currently support a small vb app written VB 6.0 that was written before I was hired. The app has about 12 users. Backgroun Info: The company is in the process of rolling out XP Pro to all PC's. So some users are on NT, while...
  6. Julian4145

    Newbie needing help with IIS

    Boy, don't I feel like a horse's petut. I should have known that. It was unchecking the Friendly messages in IE that showed whats wrong with the pages. I thought that was taken care of because I defaulted IIS to default to 500;100 Internal Server error- ASP error on the custom errors tab in the...
  7. Julian4145

    Newbie needing help with IIS

    Gary, The files are all in the wwwroot folder. Julian
  8. Julian4145

    Newbie needing help with IIS

    Just to clarify, I realize that last post was a little vague, but I'm not sure what I should be looking for as a potential problem. Any ideas would be helpful. thanks, Julian
  9. Julian4145

    Newbie needing help with IIS

    Hey all, Probably a simple question, but seeing as how I am new to running IIS it is giving me problems. I am running IIS 5.1 on a XP Pro machine and it seems IIS is being selective as to what asp and html files I can view in a browser. I get a &quot;The page cannot be displayed error&quot; for...
  10. Julian4145

    Issue with a for statement

    Thanks! That i=0 was a typo, I had 1 in the actual code. I was trying to recreate the code from my memory. Julian
  11. Julian4145

    Issue with a for statement

    I tried that. Its still running through the for statement twice. I'm not sure whats going on here. Anyone? Julian
  12. Julian4145

    Upgraded MotherBoard and Old Hard Drive

    Got it! Thanks! Julian
  13. Julian4145

    Upgraded MotherBoard and Old Hard Drive

    Mainegeek, Either I'm not doing that right or its not working. I right clicked on the Slave drive and went into sharing and security but it just says to drag the folder to the Shared Documents Folder. But thats not working. I still get accessed denied popup. Julian
  14. Julian4145

    Upgraded MotherBoard and Old Hard Drive

    Hey All, I just upgraded my sister's motherboard and cpu. She has Windows XP Pro running on her Old HDD. She would like to get some of her files off of her HDD before its reformatted which needs to be done to install the new motherboard's drivers and remove the old ones. I put her HDD in my pc...
  15. Julian4145

    Issue with a for statement

    Can anyone tell me why this code loops through 16 times instead of 8? var TotalAmount = 0; var tmpAmount; for (i = 0; i <= 8; i++){ tmpAmount = parseFloat(form.elements('txtAmount' + i); if (tmpAmount != 'NaN'){ TotalAmount = TotalAmount + tmpAmount; alert('TotalAmount'); } }...

Part and Inventory Search

Back
Top