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!

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?

    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?
  4. 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?
  5. 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...
  6. 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?
  7. 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?
  8. 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...
  9. 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?
  10. 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...
  11. MandoThrasher

    How to validate XML against an external DTD?

    Anyone have a code sample on how to do this?
  12. MandoThrasher

    accounts receivable

    Anyone have or know of a good demo or sample code for an ASP accounts receivable application that's based on SQL server or Access? I'm designing an A/R system and don't want to reinvent the wheel when I'm sure it's been done a thousand times. I need guidance on the database design.
  13. MandoThrasher

    CSS question

    This seems like the forum that is the most closely related to my question, so here goes. Anyone know the style tag to format the border color property of a combo box? does it exist? I've tried border: 1px solid #666666 Nothing seems to work. I always get the default color.
  14. MandoThrasher

    addition vs concatenation

    I'm trying to add to numeric fields together, but it's concatenating the values instead of performing addition. I'm using the "+" operator. i.e. 2 + 3 is returning 23 What am I doing wrong?
  15. MandoThrasher

    Can I email a report?

    Working in Access 97. Is there a way to email a report generated by Access? My first guess would be to save the report as HTML or something that Outlook supported. Anyone know if emailing a report is supported in a ny version of Access?
  16. MandoThrasher

    CDO - how to keep link text from wrapping??

    I'm creating a mail message that includes a rather long link. When you view the message in Outlook, part of the url wraps to the next line and the link is no longer valid because of the truncated text. Any way to prevent that?
  17. MandoThrasher

    creating a query in code and calling a report

    Can I create a SQL string on the fly in code and use the SQL to drive a report? I have a form with some fields and checkboxes. Based on the data, I build the SQL in a function. Now I need to figure out how to take my variable(SQL) and assign it to a query that is the datasource for a report. help!
  18. MandoThrasher

    Formatting Text

    I have a variable vAmount that I need to format as currency with commas and 2 decimal places. I can't find any kind of format function in actionscript. I'm using MX.
  19. MandoThrasher

    session timeout

    Can you set a session timeout value on a per user basis? I've got an admin backend and when the user successfully logs in I set a session variable. But the session times out after 40 minutes and the user has to log in again. Would I be better off setting a cookie? That seems to make it less...
  20. MandoThrasher

    flash navigation with subfolders

    I want to use a flash menu on a site. the site has many subfolders and when I include the same menu within my subfolders, the buttons dont work anymore because everything in the flash file references a relative path. So, if I'm in the products folder, the home button is looking for default.asp...

Part and Inventory Search

Back
Top