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

    what file contains the listbox control?

    anyone know where the listbox control comes from? I need to update that file without reinstalling VB. Thanks
  2. MandoThrasher

    preventing users from editing a record

    I have a checkbox on a form. When the box is checked, I want to disable editing of the current record, including the ability to turn the checkbox back off. The checkbox is a final approval field and once it is checked there is no turning back, so to speak. I've got the following code in the...
  3. MandoThrasher

    CDOSYS message size limit?

    no. I'm sending a string of html to the cdosys component as the subject.
  4. MandoThrasher

    Faster load time in asp

    mey Mr3putt, can you post an example of how you use that response.flush to replace a msg on screen? thanks
  5. MandoThrasher

    CDOSYS message size limit?

    I'm sending an html formatted email using CDOSYS. When the message body exceeds 8k, it seems to mangle the body. Does anyone know of a message size limit with CDOSYS?
  6. MandoThrasher

    Can I recover from an export?

    I used DTS to export data from one server to another. I selected stored procedures to export but it also replaced table data. Is there any way to recover the data that was in the table before the export routine replaced it?
  7. MandoThrasher

    how do I block a user from accessing a page?

    I guess what I'm asking is how to identify this user when he accesses the site. Request.ServerVariables("REMOTE_USER") is not returning anything. Is there another way to uniquely identify a user other than setting a cookie?
  8. MandoThrasher

    how do I block a user from accessing a page?

    I need to block a particular user from accessing a page. I thought I could use Request.ServerVariables("REMOTE_USER") to detect his machine name and block him that way, since his IP address is dynamic and he's savvy enough to delete all his cookies...
  9. MandoThrasher

    using an existing query in Access

    My ASP app is connecting to an Access database. I want to pull records in based on a query that is already built in Access. The query requires one input paramater. Is there a way to call the query from ASP and pass a parameter, similar to calling a SQL stored procedure?
  10. MandoThrasher

    can I turn a folder into a web?

    What I'm trying to to is have an administrative application create new webs(virtual directories?) as subwebs of the application.
  11. MandoThrasher

    can I turn a folder into a web?

    I know I can use the filesystemobject to create a folder. Is there a way in ASP to turn the newly created folder into a frontpage web?
  12. MandoThrasher

    MSXML connection to server cannot be established

    It turned out that proxycfg did not fix it. I had to make adjustments to the firewall. FYI - the WinHttp object does not use the standard ports(80, 8080, 443, 8443). In our case, it was using port 2317. I'm not sure about ServerXMLhttp, but my guess is that it works the same way. proxycfg...
  13. MandoThrasher

    Does the Autonum type have limits?

    cool. that clears up a lot for me. I saw those sort features in the design view but wasn't sure how to use them.
  14. MandoThrasher

    Does the Autonum type have limits?

    Are there any issues with the Autonum type field getting too big? I have a report that's based on a query that brings records in sorted by the Autonum field ascending. The records are coming back out of order when the report prints. The only thing I can figure is that the table has gotten too...
  15. MandoThrasher

    sending mail through exchange server

    I'm used to using the CDONTS object to send mail, but am having a permission error on a server running exchange. What's the propoer way to send email through an exchange server?
  16. MandoThrasher

    MSXML connection to server cannot be established

    All the examples are in C++, and I'm having a hard time translating to ASP. Here's the object Set objWinHttp = Server.CreateObject("WinHttp.WinHttpRequest.5.1")
  17. MandoThrasher

    MSXML connection to server cannot be established

    Error Type: msxml3.dll (0x80072EFD) A connection with the server could not be established /telecenter/order.asp, line 397
  18. MandoThrasher

    MSXML connection to server cannot be established

    We're using the xmlhttp component to grab shipping data from UPS. It was working fine on our development server. When we moved the app to a server running ISA firewall the component cant get out to make a connection. We get the error "connection to server cannot be established". We've...
  19. MandoThrasher

    How to validate XML against an external DTD?

    Let me rephrase the question. I'm creating an xml doc on the fly and dont know which DTD to validate against until the xml doc has been generated. There is no DOCTYPE in the document, but I need to validate it against an existing DTD. How do I do that?

Part and Inventory Search

Back
Top