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

    Fixing memory leak

    After looking at your posts, talking with an associate, and looking at the code base I am using, I have decided to do the following. ------------------- local objects If Not MyObject Is Nothing Then MyObject.Shutdown Set MyObject = Nothing End If ------------------- Global /...
  2. Don803

    Fixing memory leak

    OK, in my example, I pass the LeafObject myLeaf out of the function. Is it safe to set myLeaf to nothing before exiting the function? -------------------------- In the calling sub, let's say I have. . . set gobjNewLeaf = getLeaf() Since it is a global, where do I set it to nothing...
  3. Don803

    Fixing memory leak

    I have inherited an app that has 25 classes in 6 dlls. I have a memory leak that appears after several days. I know that I have to set my objects to nothing. My questions are. . . How do I determine what to set to nothing? adodb.connection adodb.command adodb.recordset MSXML2.DOMDocument...
  4. Don803

    True Dynamic Includes using SELECT CASE

    Why not use response.redirect instead of include? Just a question.
  5. Don803

    ASP times out when using a DLL

    OK, I have more info The DLL I am calling has events in it, and accesses other dll's that have events in them. Is this something that would cause the server to time out while attempting to instantiate the object? Don803
  6. Don803

    Is there a way...

    create a recordset named &quot;rs&quot; then . . . dim Field Response.Write(&quot;<table><tr>&quot;) for each Field in rs.fields Response.Write(&quot;<td><b>&quot; & Field.name & &quot;</b></td>&quot;) next Response.Write(&quot;</tr>&quot;) do while not rs.eof...
  7. Don803

    ASP times out when using a DLL

    I inherited an application that was written in VB6. I have been asked to convert it to ASP. I am attempting to access some of the DLL's the application uses, and they cause the page to time out. I write VB to access the same DLL, and it all works fine. What would make a dll cause timeouts on...
  8. Don803

    Free asp encryption code?

    I occasionally need to send url's via email, and do not want the url messed with. I send the value, and a hash. I also use a secret salt value. example: salt = &quot;salt makes food taste better&quot; Then on my page, if the value, and hash do not match I state that the page is unavailable...
  9. Don803

    Noobie question

    I am an VB 6.0 & ASP programmer, and am getting ready to learn / switch to ASP.NET. Do I need VS.NET, or can I get by with just VB.NET? I have VS 6.0 now, and only use the VB portion. I do not like interdev, and prefer to code asp using an editor. I have been told that asp.net is more like...
  10. Don803

    My cursor is always READ ONLY - WHY?

    I found a reference that may shed some light. It is in the Transact-SQL help file from SQL 7.0 sqlbol.chm --------------------------------------- If a DECLARE CURSOR using Transact-SQL syntax does not specify READ_ONLY, OPTIMISTIC, or SCROLL_LOCKS, the default is as follows: · If the SELECT...

Part and Inventory Search

Back
Top