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 TouchToneTommy 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: *

  • Users: GaryC123
  • Content: Threads
  • Order by date
  1. GaryC123

    Check if popup exists

    I'm just trying to find out if a popup window exists. I thought you could do this someway by referencing the name of the popup. Also there maybe more than one popup each with a different name. The creation of the popups is from some js code that keeps getting cycled. By name I mean the...
  2. GaryC123

    Decode attachments

    I'm looking for a way to get any attachments from an email file (i.e. just the txt version of the file and not trying to parse an incoming email) and send this to the browser as a downloadable file. http://www.eatdrinkandsleep.com
  3. GaryC123

    Can you crack this

    I want to know if anyone can crack this. i.e. the encrypted page. http://www.intouchmedialtd.com/encrypt.zip http://www.eatdrinkandsleep.com
  4. GaryC123

    Protecting ASP code

    Not a question, but I have some software I've written which I hope does this. By using a single dll, and then encrypting the asp pages so no reregistering dll's if you make a change while still protecting the asp code from prying eyes. There is a beta version if you want to be a beta tester at...
  5. GaryC123

    Execute equivalent

    Is there a command I can use in a dll thats the equivalent of ASP's Execute command i.e. execute("response.write "hello")) Using execute in vb causes an error, or is the syntax different? http://www.intouchmedialtd.com
  6. GaryC123

    Auto expand listbox

    I'm looking for a way to automatically expand a list box as a result of another action. http://www.intouchmedialtd.com
  7. GaryC123

    DLL woes

    Hi I've created a simple dll that just writes Hello World to the screen, registered it, then I call it from an ASP page and I get the error Invalid Class String. So I check the dll and see if I can delete it - no problem, except if it was really registered then I shouldn't be able to delete it...
  8. GaryC123

    Sessions and DLL's

    Is it possible to set a session variable from a dll (and cookies as well)? http://www.intouchmedialtd.com
  9. GaryC123

    Application or Local variable?

    I have about 200 fields I pull from a db that contain translations (only pull the relevant language). Now I currently do this for every visitor and this occurs on every page, so the visitor can view the site in his own language. I'm undecided whether this is the best situation or should I use...
  10. GaryC123

    Remove special characters

    How can i remove the special characters from a field in a recordset. i.e. things like carriage returns,tabs etc that dont actually show up. http://www.intouch-media.co.uk
  11. GaryC123

    xmldom Im lost

    I have this script taken from w3schools. But when i run it locally I get an error on line 9 - Object Required. What am I doing wrong? <html> <head> <script type=&quot;text/javascript&quot; for=&quot;window&quot; event=&quot;onload&quot;> var xmlDoc=new...
  12. GaryC123

    Need some help on sql

    Table 1 contains ID and Area Table 2 contains ID ID is unique thru the 2 tables I need to be able to say select from table 2 where Id matches the ID held in a session variable from table 1, but also pull all the records from table 2 where the area is the same as the matching ID's area. Does...
  13. GaryC123

    CSS and Readonly

    Dunno if this is possible. I've got a css style loading dependant on a value within an if statement like this <%if ty=1 then%> <style type=&quot;text/css&quot;> input {border-width:0} </style> <%end if %> But I'm wondering is there a way to add in the READONLY property to the css style, can't...
  14. GaryC123

    I have this short routing checking

    I have this short routing checking the selected radio button with values 1,2 and 3 if (x.packageoption.value==&quot;asp&quot;) for (i=0;i<document.order.payfreq.length;i++) { if (document.order.payfreq[i].checked) { freq= document.order.payfreq[i].value price=asp[dd][i] break; }} But...
  15. GaryC123

    Hi I have this javascript in my pa

    Hi I have this javascript in my page which works perfectly well in IE but in Netscape (i have 7.01) it doesnt do anthing. I'm i missing something, I'm very much a novice at javascript. Heres the script and thanks for your help function calculate(){ x = document.order var price; var freq; for...
  16. GaryC123

    Regex

    How do i create a regular express to search for something like this <dsfdsfdsfds> where I want to find data within the <> tags Just need the expression to use http://www.intouch-media.co.uk
  17. GaryC123

    Open/Close window

    I have the following script opening a new window and closing the old one but is there anyway to get rid of the msg box saying the window is trying to close? <Script LANGUAGE=&quot;JavaScript&quot;> window.open(&quot;http://www.booknowlimited.com&quot;, &quot;hotel_update&quot...
  18. GaryC123

    Hidden Text Box or Sessions Variables

    Say on a list of 40 properties each with 50 variables would it be better to place each property in a form tag with 50 hidden fields (the user clicks the property that they want) or everything in one form tag and set 50 session variables for each property? Saturday 12.00 20.00 3.00am Sunday...
  19. GaryC123

    Session Cookies

    In IE6 why can I not set a session variable without changing default cookie settings or is this just a glitch of IE6 Saturday 12.00 20.00 3.00am Sunday [img http
  20. GaryC123

    Accessing password protected Database

    I seem to have a problem with a new laptop i've set up with XP pro. I can run ASP scripts on an Access DB fine but if i try to access a DB with password protection i get the error 'Unable to open the registry key. Temporary volatile Jet DSN.' Anyone have any ideas, as far as i can tell i've...

Part and Inventory Search

Back
Top