Thanks very much for your replies. I think I understand it now. I guess this is very closely related to the 'smart pointer' templates that are available for C++. I had this idea...
I have a strange problem with overloading the -> and * operators. I'm trying to do this to make dereferencing a pointer to the class intrinsically safe. I think the problem is the same in both cases,...
If you already have a connection to the remote machine with a particular user name and password, then the pipe will try to use the same user name and password....
I want to open a named pipe on a remote NT workstation from my own workstation. But the user that I am currently logged in as doesn't exist on the remote workstation. So I want to open the pipe with...
I have an anonymous pipe, created with CreatePipe(). I want to know how the process that is writing to it can discover in advance whether the write it is about to do will block or not. Or to put it...
Have you checked that this entry point exists in the actual dll you are using? You can look by right-clicking on the dll (make sure it really is the one VB is loading and not another one with the...
I had thought that only worked for C++ code, but you are quite right. Now all I need is some way of getting it to display only the functions in the window I have foremost...
That's one possibility, but only useful when the function name is already displayed somewhere on the screen. I wanted a pop-up menu listing them all, if possible.
Is there any way (or add-in) that will give me a pop-up menu of function names in a source file (like in Metrowerks Codewarrior), so that I can jump directly to where that...
ISO9660 is a file system format, not a file format. Your best bet is to search for information on the UNIX program called mkisofs, which is used to create an ISO9660 image file in preparation to...
You will be familiar with the 'Next' and 'Previous' buttons in the MSDN help browser that enable you to move through pages in the manuals sequentially. (As distinct from the forward and back...
I'm not sure what you mean 'no built-in linking mechanism'. A collection has mechanisms for adding new objects and for iterating through the list. Isn't this what a linked list is supposed to do?
...
The easiest thing is to use a 'collection'. Although the documentation doesn't say so, it appears that 'collections' are essentially linked lists by a different name.
How can I hide the caret in a rich text box? The box is used to present scrolling information to the user, and the user should not expect to be able to type anything into it.