MSN Team has not not released any documents about how to connect MSN Servers. But this website http://www.hypothetic.org/docs/msn/index.php provides quite...
There is another way, you can use Shell function: SHCreateDirectoryEx. You do not need create directories from outermost to innermost. This function automatically creates parents directory if they do...
It is the way some programs such as Unikey, or IME do. If you want to capture all keypress of the system, you have to use hooking API. Besides you can also detect mouse events. When you use function...
After long debugging, I concluded that the National ActiveX is the reasons. I wrote my own component replacing these ActiveXes. Now program runs smoothly.
...
I have no experience about this problem. As I know, you have to read OLE-related documents. OLE is part of Active Technology. With OLE (Object linking and embedding) :
Sorry, I could not access your link. By the way, some days ago I read this article of Hans Dietrich talking about Debug tools. This is a good way to debug program (dumping stack...
I used Boundschecker to check memory leak. There is no memory leak, but there are many Interface Leak (with Interface Leak Count = 2), because I use MSChart...
I have very difficult trouble. My program is realtime, multithreaded ( VS 6.0, VC++, Win2000 Professional-Korean version). If I run program in IDE (run with VC++ Compiler), the...
Thank Sam Hobbs again. I think break point to check memory is not a good solution for a my program because of reasons you said. So I will try other solutions.
I know a FFT program written by Relisoft company (http://www.relisoft.com). Its source code is public. All program uses win32 API functions, and the program has good interface. Let's try it.
I think that my program has memory overwrite bug(s). Because program crashed at 6.0AM where we were all deep in sleep, and the resolution has been kept unchanged since a month ago.
I am testing program in Debug Mode, the program seem fine because It has ran well for over 12 hours. But this morning, The program crashed, the I saw the CallStack, here is the last break point:
Sorry, I don't know exactly why it is. And I have not searched any documnet explaining officially about this phenomenon. When programming with FlexGrid you should keep in mind to backup resource...
Thanks kuphryn for your quick answer. Before posting, I tried this solution. But LVN_ITEMCHANGED is notified when sorting has been finished. I think that when SortItems is returned, CListCtrl have...
I create a class derived from CListCtrl. This class is like ListCtrl in Windows Explorer in Details View. You can create new file, rename, or delete, re-arrange, ....