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 bkrike 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 Ayac

  1. Ayac

    Detect drive letter in JavaScript?

    Great Idea Thank you!!
  2. Ayac

    Search database for whole word

    I guess you can do this "Keywords, LIKE '% " & searchString & " %'", but when you build this query, you might also want to create a loop (you can use the mid function) that will separate the SearchString into just whole words. Then you also have to decide if each "search word unit with the SQL...
  3. Ayac

    Detect drive letter in JavaScript?

    Hi! Do you know if it is possible? I am launching an installation program from a CD that suppose to copy its files to the hard drive C:\ The autorun script launches a web browser to display an html menu and from there to trigger the installation process. Is there a way in JavaScript where I...
  4. Ayac

    Word.application gives me an error... please help!

    Thanks PHV...we installed that but unfortunately it did not make it work :(
  5. Ayac

    Word.application gives me an error... please help!

    Hi All! I have this little code to invoke Word and load a document into it by clicking on the link. This worked fine so far but I found a computer that gives the following error message: "ClassFactory cannot supply requested class" That machine have som extra patches and goodies installed...
  6. Ayac

    setting up a merchant account in ASP cart

    A couple of things. I would say a gateway is like an interface between your application and the bank's server. You send predetermined named variables via a form them for further process. Based on those values, it returns a page with tax/credit card validation etc. a bunch of infos you need so...
  7. Ayac

    I am almost there... how to launch an application?

    Here is my program. It works just fine, creates an icon on your desktop that launches IE when I click on it. My problem is how to tell to oShellLink.TargetPath to go to a certain website (www.timesheet.com)? If I put it in the website's URL, IE goes there but it uses one of the existing ones. I...
  8. Ayac

    cookie check if not there to redirect

    Probably the best thing to do is using a Session Cookie to store a value on page1.cfm and as you get to page2.cfm, check if that Session Cookie has that value. If it does not have it, automatically redirect the visitor to page1.cfm Use Session.variable_name
  9. Ayac

    Quots within quots?

    The only thing I would mention here that I would use this instead of the first one: value='<% = replace(something,chr(34),"&quot;")%>'> because ASP freaks out if he sees """ in a row. Thanks for both of you! I never thought that such things would work within a form field... well, I can...
  10. Ayac

    Quots within quots?

    Hi all, I have a problem here and I do not see a good way to fix it yet. I created a search engine and it has a form where you can type your search words. When you submit your search, you got a list of results. Now that is fine, but I want a link on that page that takes you back to the form so...
  11. Ayac

    Switch between different Java versions...

    I am viewing our intranet site with this applet embeeded on two different machines. One has IE 6 with Sun java and the other has older Win98 system with IE 5. The Sun JVM wants me to login again when I run the applet.
  12. Ayac

    Switch between different Java versions...

    Hi all! We have a problem here that involves different technologies but for me it seems like there should be a Java way to fix it. We have a Microsoft server where we run two softwares that have web-based interface under a Windows secured, password protected area. Those computers that have...
  13. Ayac

    Uploading Multiple Files via single input?

    If time does not matter, you can schedule a batch file for unzip, so in a certain time of the day it unzips the file if it is there. How to do it other ways... hmmm I have to think about it more...
  14. Ayac

    Authenticate using a web form?

    I know and I do that too, but this time I want to have Windows security involved. I do not want to maintain two databases. Where does Windows store usernames and passwords? There has to be a db somewhere... Or is there a way to sync a SQL database with Microsoft's Active Directory?
  15. Ayac

    Problem with Response.Write

    Use chr(34) instead of " Like: Response.Write "<script language=" & chr(34) & "javascript" & chr(34) & "> document.getElementById('PageContentFrame').location.href='WebForm3.aspx' </script>

Part and Inventory Search

Back
Top