February 28th, 2013 09:24 AM
Does this mean I have to change the whole of 3rd-party library MySpell & HunSpell?
I thought HunSpell can support UNICODE (because it states it can)... but the source code still works with char *
February 28th, 2013 09:06 AM
I converted an old example code (SteveKing's SpellEdit):
SpellEdit[^]
to UNICODE. Also it was made for Visual Studio 7.1 (2003) but I managed to fiddle with it to get it compiling/working...
January 22nd, 2013 03:51 AM
I think I got it working:
From VC2005 there's a function called AddResourceInstance() to chain DLLs. However am still using VC6 so this function doesn't exist.
So I just copied some code from a...
January 18th, 2013 04:43 PM
The exe project is statically linked to my other DLL project via the linker lib. So it's loaded automatically. Am not sure how to create a satellite DLL for that DLL, nor how to unload/reload it, etc.
January 18th, 2013 11:22 AM
I have a Visual C++ workspace that has 2 projects (1 exe & 1 DLL).
I used Serge Wautier's tutorial ( http://www.codeproject.com/Articles/11731/Resource-DLLs-and-Language-Selection-Menu ) to...
February 18th, 2011 05:10 PM
This is really for those Visual C++ 6.0 programmers out there.
I have a workspace which builds 3 apps & dozen of DLLs. Each project has it's own resources (resource.h & corresponding RC file).
...
August 10th, 2010 09:23 AM
Does anyone know to quickly make a multiple search & replace app (in either C or C++)? Am not interested in searching multiple files, just one file. I want to translate a list of unicode characters...
April 21st, 2010 09:14 AM
I'd like to write a C++ app program that would store a list of files (by relative path/location) plus it's CRC32 or checksum. Then it would also store more CRC32/checksums for the same file, for each...
January 20th, 2010 03:34 AM
Thank you so much 0xC0000005.
Do you still have the original CD? Is it possible if you zipped up the entire CD and upload to megaupload.com or rapidshare.com please :) ? Much appreciated!
January 19th, 2010 10:34 AM
Does anyone have the book "Programming Microsoft Visual C++ 5th Edition, David J. Kruglinski, George Shepherd, and Scot Wingo"? I bought the book secondhand but it never came with a CD because it was...
August 6th, 2009 12:20 PM
I have a legacy classic ASP website with lots of classic AJAX (many ASP files specially made for processing AJAX requests).
We are slowly migrating the website to ASP.NET 2.0 and developing under...
April 29th, 2009 06:43 AM
Manually derived from CDateTimeCtrl with no wizard....
btw, does this paint the box (of the drop down bit)?
April 29th, 2009 06:11 AM
And also add BOOL OnEraseBkgnd(CDC* pDC); to the header file too ;)
And replace those HTML > codes with > symbol ;)
error C2084: function '__thiscall CMyDateTimeCtrl::~ CMyDateTimeCtrl(void)'...
March 19th, 2009 06:50 AM
This is a big question that covers both building & source-control of programs.
I use Perforce (they don't have forums) as my CVS source-control. Does anyone have any good ideas on how to write a...