I was wondering if any could recommend a good book to get familiar with
programming toolbars, band objects, plugins, etc, to used from within other
Windows apps? I would prefer one in VB.Net, but C# will work too.
TIA
Mark
...
more >>
I have a class that sends email using smtpmail. It's worked fine for almost
a year (.Net v1.0), but yesterday I had to make changes to it, and we've
since upgraded to .Net v1.1. Now, at byte 990 of a particular mail body,
there is an exclamation point, carriage return and a space inserted into ...
more >>
Hello group,
We're working on a fairly large application. We got to the point when the
memory consumption gets sensible; sometimes we have to plant GC.Collect
calls for this.
However, we noticed an interesting phenomenon. The amount of allocated
memory is immediately drastically reduced w...
more >>
I was wondering for all blocked system calls if they block the process or the thread in Windows and/or .NET framework
Blocked system calls generally stops a thread/process until a system call has finished executing. An example of this is reading from a file or acessing the hard disk. The process...
more >>