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

    MTSTransactionMode Property - Does it make a difference?

    I have a DLL containing several classes. The DLL is registered under MTS, but doesn't make use of transactions. Will I get any difference in performance or behavior if I change the value for MTSTransactionMode for each class from "0 - NotAnMTSObject" to "1 -...
  2. SneezeDragon

    ADO Command Lock Type?

    I need to correct my first post. The Command is actually executing a stored procedure call with parameters. So we set the parameter values and then simply call Command.Execute. No recordsets are involved, so there isn't a recordset object through which I can access LockType. The database is...
  3. SneezeDragon

    ADO Command Lock Type?

    The ADO Command object doesn't appear to have a LockType property. Does anyone know how locking is performed on a database table when Command.Execute is used to execute a SQL update statement (no recordsets involved)? Is this locking up to the database itself, or is there some sort of...
  4. SneezeDragon

    ASP file upload through ADO crashes database

    I'm running an ASP web application using Oracle 8i and IIS 5.0 on Win2K. I use ADO for data access. Part of the application allows users to upload files into the Oracle DB as BLOBs. My problem is unpredicable and nearly impossible to reproduce: Occasionally, a file upload fails to occur (no...
  5. SneezeDragon

    Stupid .NET question

    Apologies in advance if this question seems silly... If I wanted to serve .ASPX files from a web server that currently only serves .ASP files, what do I need to install on that server? Is it the .NET framework that provides this capability? Thanks!
  6. SneezeDragon

    Obtain current function name programatically?

    Is there a way to obtain the name of the current function programatically? (ie, if I'm in the "HelloWorld" function, I call a command that returns the current function name, "HelloWorld".) I realize that I can manually set a string constant to the function name, but if I...
  7. SneezeDragon

    Keeping CRLF out of mail body

    I need to send XML within an e-mail document body to another system. My problem is that the company standard is Notes mail, and whenever I send the e-mail to a Notes mail account, Notes inserts carriage return/linefeed character combinations in the document body in order to make it word wrap...
  8. SneezeDragon

    How to eliminate "RecordCount" from DOMDocument XML?

    Yes, I tried this. Same result as with CreateElement.
  9. SneezeDragon

    How to eliminate "RecordCount" from DOMDocument XML?

    I'm creating an XML document with MS Visual Basic 6.0, using the MSXML2.DOMDocument.4.0 object. When I use this object model, my first XML node automatically acquires timestamp and recordcount attributes. I don't want any attributes. How do I prevent this from happening? CODE SNIPPET: Set...
  10. SneezeDragon

    Execute JS code when page is displayed

    Duh. It does work; I was just doing something awfully stupid. Never mind.
  11. SneezeDragon

    Execute JS code when page is displayed

    I'd like to execute some JavaScript code when a page is *displayed*, not just after it's loaded. This includes when the user navigates back to it through the history. I don't want to re-load the page; it needs to stay cached. Unfortunately, the onload event won't work for this, and neither...
  12. SneezeDragon

    PDF created within website--what are my options?

    Thanks for your feedback, Derren! Just a few questions: Will the customers be able to print the resultant file from their web browsers without any additional software but Acrobat Reader? I take it from your analysis that I wouldn't need any additional development software, since Distiller...
  13. SneezeDragon

    PDF created within website--what are my options?

    I'm looking to create PDF files on-the-fly for an existing e-commerce website. I've read the other posts on automatic creation of PDF, and I'm still not sure of the best way to go about it. Any advice would be appreciated. REQUIREMENTS: We need external (internet) customers to be able to...

Part and Inventory Search

Back
Top