I would just like to know if it would be inefficient if I created a hundred or more view streams or view accessors from a Memory Mapped File object per process, and I had a few or more processes...
Okay, thanks for the response. So, I don't have the full version of Visual Studio on my personal machine. I'm guessing that would have the tools I need for analyzing my code.
I am working on a class library, and I have started with this one class called TextTraverser. It's purpose is to allow me to take either a StreamReader or StringReader and read through it back and...
Converting a CSV file into a pipe delineated file should be simple and easy. The way I would approach is to write a lexer and parser for the csv file, process it into records, and then output those...
I was thinking of writing an article for code guru whenever I have something of worth to contribute. The only problem is I am not sure about the appropriate structure of these articles, or...
From what I understand, exceptions are very slow and are not useful for returning error information repeatedly in a loop, but most class methods in Microsoft’s APIs make great use of exceptions, to...
My code actually does handle all the windows messages in a separate thread so you don't have to. All you have to do is read and write to connection objects.
I wanted to implement interprocess communication without using named pipes, without using memory mapped files, without using sockets. I wanted to implement my own method of communication between...
I'm new to WPF. I've just been trying to put a menu bar and a grid object in a window, but I always get the exception that I am trying to set a content property more than once. I can't figure out how...
I've created a simple program that decodes plain text into a hidden message. If you'd kindly bear with me, I'd like you to read through this text, and then follow the link to code. I ask you to asses...
I've managed to write a simple set of classes that facilitate generating verse in iambic patameter. All the the output will flow perfectly, but unfortunately none of...
When I first got excited about C++ and the power it could give me, I immediately abandoned Visual Basic and learned a decent amount of WINAPI. I still feel some kind of fun for WINAPI, but I don't...
I've just recently returned to WINAPI programming in C++, but now in Vista. I'm having a problem creating a window. According to GetLastError() windows cannot find the class. Clearly the class has...
In other languages like C++, it is possible to write libraries that can be loaded and unloaded at runtime, making it possible to add functionality to the program merely by placing third party modules...
From my knowledge of C++ applications, once a window is created, it is necessary to perform a continual loop to check for windows messages. If no loop is executed, the program exits. Why do Java...
Over the past few months, I have been thinking about going to college, such as Pensacola Christian College or NJIT, to earn a degree in computer science and software engineering. I want to earn a...
I am currently interested in creating my own programming or scripting language, but I am unaware of any resources that would allow me how to learn this skill. Does anyone know of any step by step...
I require a class with top of the line text manipulation. I am not refering to a string class, something which is terminated by a null character, but a text class. The size of the text would not be a...
I have written two classes: GHeap_Block and GHeap, in which I assuage the task of handling heaps. One of the GHeap constructors enables the creation of an ever-growing heap. Whenever the number of...