Mathworld is a great website, alot of good stuff there :)
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
Maybe you've already seen this, but just in case, it may help... MFC ActiveX Controls: Using Fonts[^]
"Go that way, really fast. If something gets in your way, turn."
KISS. Internally a class must be able to access private members of an object of the same class so that it able to copy it or swap contents with it. That is you would find if very difficult (or impossible) to write copy constructors or “=” assignment operators if objects of the same class where not friends. The ‘main’ example you supplied is different because the assignment is being made outside of the class objects and from the out side there is no friendship. By the way, your ‘Get’ is an assignment (or copying) method and does not get anything.
INTP "Program testing can be used to show the presence of bugs, but never to show their absence."Edsger Dijkstra
HtmlHelp() CHM is a compiled HTML help file. Great info on using HTML help is in the HTML Help Workshop and Documentation[^]
"If you can dodge a wrench, you can dodge a ball."
Zainu wrote:
I was looking for building an application in VC++ 6.0.
VC++ 6.0 should be OpenGL ready, simply install the upgrades: Service Pack 6.0: http://msdn2.microsoft.com/en-us/vstudio/aa718364.aspx[^] and if you have nvidia graphics cards: http://developer.nvidia.com/object/sdk-9.html[^] or if you have ATI: http://ati.amd.com/developer/radeonSDK.html[^] That should allow appropriate extensions to bring the OpenGL current.
_________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)
cygwin is great. I was using to compile a 3d game. For the past two days i was sitting on this. The only problem is initial setting up of the libraries and headers and then too download the cygwin packages you require. Regards
The Best Religion is Science. Once you understand it, you will know God.
Ok This is how i did it. Create a Circular region. Using CreateEllipticalRgn(). Set the windows region to the created region. Now load the bitmap. the bitmap will be confined to the created circular region. Is this is the best method to do that? Regards
The Best Religion is Science. Once you understand it, you will know God.
With just the information you've provided, you're the only one in a position to answer such a question. Does your control use something specific to Access 97?
"Approved Workmen Are Not Ashamed" - 2 Timothy 2:15
"Judge not by the eye but by the heart." - Native American Proverb
GDI+ does wonders with antialiased drawing and it mixes well with existing MFC view based or just plain GDI code. It's a bit slow(er) and has a different "feel" than MFC wrapper classes but once you get comfortable with mixing it into existing code, it eliminates the need to deal with other graphics libraries for the most common imaging and drawing operations. Not to mention that the text output in the antialiased non-grid fit mode is so well behaved, that WYSIWYG output is possible using standard MM_ISOTROPIC mapping modes with no additional effort. You can choose to use GDI or GDI+ coordinate translation schemes depending on whether you like matrices or the traditional approach. The .dll is already available on XP systems and there is a redistributable for earlier Windows NT/2000 based versions if you need.
Extreme caution is preserved when using those port converters. I've used some and all of them mananged to blue screen WindowsXP! I've never seen one of those since Windows 98. The problem with those USB serial ports is that most of the drives implement CancelIO wrong and that causes a lot of trouble. More information about this can be found in the CSerial[^] article. Behind every great black man... ... is the police. - Conspiracy brother Blog[^]