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 wOOdy-Soft 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 inspiraller

  1. inspiraller

    OpenDataSource - Datasource = web address?

    Same error message even with that. Cheers anyway though.
  2. inspiraller

    OpenDataSource - Datasource = web address?

    thanks Boris I tried that with forward or backslashes and that didn't work either. I appreciate what you are saying. I can only think the best way would be to first to upload data from excel into an asp or php page etc and then update sql database dynamically from there.
  3. inspiraller

    OpenDataSource - Datasource = web address?

    Hello I would like to make a connection to an excel database on an external server from sql server via a stored procedure and import the data from it. I have tried importing data from the excel database sitting on the local harddrive of the sql server and that works, however I will need to...
  4. inspiraller

    Session and / or cookie lost when opening new window

    I have sorted it. It wasnt working because I put http:// in my domain name http:// Thanks anyway chopstik.
  5. inspiraller

    draw menu

    When you say how to GET THE TABLE? do you mean print it in HTML?
  6. inspiraller

    Session and / or cookie lost when opening new window

    Yes, I can view the cookie from the original page, and if i traverse pages from the initial setting of the cookie. But the cookie is not there, when opening a new window. I have even tried setting the cookie with Now + 5 and the cookie is still not there when opening a new window.
  7. inspiraller

    How detect activation of "Lock The toolbars" for IE

    Surely you can just use the window.open attributes to set the attributes of the window. window.open('somepage.htm','','titlebar') By specifying one attribute all the other attributes like scrollbars, resizable will automatically be locked. And since titlebar always shows, you can just use that.
  8. inspiraller

    Slider to Form input

    <!-- You can do this with CSS. COPY AND PASTE THIS CODE INTO YOUR BODY. Just change the height and width accordingly --> <style type="text/css"><!-- #someLayer{ overflow:auto; height:100px; width:30px; } --> </style> <div id="someLayer"> some content with a scroll bar</div>
  9. inspiraller

    Pop up Problems

    Whats the code in your function?
  10. inspiraller

    Session and / or cookie lost when opening new window

    PAGE 1 Response.Cookies("loggedin")="true" Response.Cookies("loggedin").Expires = Date + 1 Response.Cookies("loggedin").Domain = strMyDomain PAGE 2 Response.Write wrapLine("START COOKIES LOOP") for each itemName in Request.Cookies Response.Write wrapLine(itemName & "=" &...
  11. inspiraller

    I'm having an ASP,Access, inserting dates, nightmare!

    Try CONVERT(smalldatetime, '24/12/2004', 103) This will switch the date around from UK to US style.
  12. inspiraller

    Check box

    Your problem could be ASP or Javascript related. Consider breaking it down and testing one or the other first.
  13. inspiraller

    Session and / or cookie lost when opening new window

    Hello Chopstick, and thanks for your response. I understnd that about the session, so I have created a cookie instead. Hence, im wondering why its not even recognising the cookie?
  14. inspiraller

    Decimals Needed

    Sorry - that should be FormatNumber(str,2) NOT ZERO
  15. inspiraller

    Decimals Needed

    strEventCategory = parseInt("" & rs("Event_Category")) function parseInt(str) if isNumeric(str) then parseInt = FormatNumber(str,0) else parseInt = 0 end if end function

Part and Inventory Search

Back
Top