I am trying to draw an edge label in a graph. The edge is not horizontal so I can't just call DrawString on the Graphics reference. Does anyone have an idea of how I can draw a string along a...
Well most of my code that uses the -- operator for the list::iterator class does so only in cases where it knows it can decrement. For example, I have a game simulator as one of my classes that...
I recently brought my project over to visual studio 2005 and after compiling it, I started up to get an assertion failed error saying that list iterator is not decrementable. After some searching, I...
Are you trying to make it click a control like a button, or trying to send a mouse click to the specific location of 10,10 in the window and there is no button there?
This is not a good way to get help on this forum. We are not here to do your homework for you. Instead, why don't you try something and if it doesn't work, post the code to your solution here and...
I have several large projects which were originally designed in VC++ and now I am looking to move them to .NET class libraries to be used for my C# GUI and web services front ends.
I have a very large project (100,000+ lines) which is written entirely in unmanaged C++. I am looking to add some nice GUI and web service front ends to the project, so I want to convert the code to...
I'm working on a research project that closely resembles a UML class diagram creation program. I started out using Java and JHotDraw to create my own figures, tools, etc, but I really would prefer...
I'm trying to make a custom GraphicalCompositeFigure in JHotDraw. I want it to basically be a figure which has an Ellipse background, with 3 text fields in the center. I've tried a lot of different...
I have a map of strings->Images that I load at startup. This map contains all the files that will be in the picturebox. Also, they're all the same shape, so this really makes the most...
So there's no way at all to do this? I changed the image to a Panel and drew it in OnPaint...but the blank spots are still being filled in with some color instead of showing what's behind the image....
Games programming is not easy. Most major games are done in C/C++, as they allow for direct memory management. However, if you have no experience (or even little to moderate experience) with a...