Try to implement global keyboard shortcut in MDI parent/child form and other form by
I override ProcessCmdKey() in my MDI parent form class and have some keyboard shortcut calling method in same class. But I wish to make these hotkeys working in parent/child form and other form. The case now is when focus on the other form(regular form, not MDI), ProcessCmdKey() doesn't capture keyboard anymore. Which class should I put ProcessCmdKey() in and anything to make it work? Thanks!
Hi all,
I'm writing a C++ program calculating MD5 hash.
Let say it contains foo1() and foo2()
which foo1() outputs data to unsigned char* buf with lenght "buflen".
I'd like to store buf in somewhere (not in a file) rigth after foo1() ends each time.
After few foo1() run few times(1~20 times), foo2() calculates all output of foo1() which already store sequencely somewhere.
By the way, foo2() reads...