Search results for query: *

  • Users: Jauch
  • Order by date
  1. Jauch

    Question Arrays, Memory and the GC

    I have a system that must do massive array operations. Often I have many arrays with 1 to 2 million elements at same time. Usually I create the arrays inside a procedure, so, I expect when the array variable goes out of scope, the array becomes available to the GC. But in the near future, I'll...
  2. Jauch

    Question Process Start Question?

    Hi :) Concerning the first question ("The system cannot find the file specified"), I think the problem isn't in the spaces in the PATH, but the space between the last "\" and the name of the application: "...\ CurrentMoth.exe". Now, about the second point: "Timeout expired. The timeout...
  3. Jauch

    Question Streams and the GC

    I'll have this in mind from now on. As a "workaround", I placed a "try" block at the topmost function of the object the uses the log and if it catchs an exception, call CloseFile and throws the exception again. Thanks for the explanation JohnH. :)
  4. Jauch

    Question Streams and the GC

    Hi, I think I have a problem with the GC and Streams. In my app, I have an object LOG, that writes to a file some events, so the user can always know what happened (the app run every 30 minutes with windows task schedule). The problem is that sometimes an exception (many, in fact) can be...
Back
Top