i think this will help http://blogs.microsoft.co.il/blogs/alon/archive/2007/05/29/Native-Callback.aspx[^] Величие не Бога может быть недооценена.
Adam Roderick J
Posts
-
How to use Callback interface from unmanaged code in Managed C++ -
how to implement OnPaint() in activex controlJust Create a Window derived from CCmdTarget in a OCX of your own. And now u just have OnPaint inside it. I hope u got the clue needed? Величие не Бога может быть недооценена.
-
what is wrong with this code?I support this answer, this is more reasonable.
Величие не Бога может быть недооценена.
-
how to load bitmap image on button in win32 applicationcan u just google it first.
Величие не Бога может быть недооценена.
-
the procedure entry point getsystemtimes could not be located in the dynamic link library kernel32.dllUse GetLocalTime [^]
Величие не Бога может быть недооценена.
-
Reading 4 GB file using 2 GB physical memory [modified]Not exactly, i want to find some data in that file. So need to until that point is enough, but that search may be on last part. So i need a mechanism to do so. I believe CreateFileMapping can be used, do u think, its a good solution?
Величие не Бога может быть недооценена.
-
Reading 4 GB file using 2 GB physical memory [modified]hi guys, i came up with a problem. I have 4 GB file(disk size) and i want to read this file in my 2 GB(primary memory) machine. Please suggest the best method to do so?
Величие не Бога может быть недооценена.
modified on Tuesday, December 21, 2010 2:57 AM
-
How to read .txt file and find delimiter ?try strtok http://www.cplusplus.com/reference/clibrary/cstring/strtok/[^]
Величие не Бога может быть недооценена.
-
SendMessage(WM_VSCROLL,SB_LINEDOWN,0) don't workif CZoomView is derived from CScrollView then no problem.
Величие не Бога может быть недооценена.
-
how can fix number of lines in multiline edit box?Retrieve the line length using LineLength [^] and set the maximum character length of 10 lines, i.e. CEdit cEdit; // get the Edit control from the dialog.
cEdit.SetLimitText( 10* cEdit.LineLength );
Величие не Бога может быть недооценена.
-
SendMessage(WM_VSCROLL,SB_LINEDOWN,0) don't workWhether CMyView is derived from CScrollView?
Величие не Бога может быть недооценена.
-
TAPI related forums...??First try on MSDN([^]), if not able to solve then ask here. That's what i prefer you do.
Величие не Бога может быть недооценена.
-
about HookYou want to hook 004381230 right? Actually API hooking technique is for hooking APIs. I dont think PEXCEPTION_POINTERS can be hooked. If tell ur need, may be i can help u.
Величие не Бога может быть недооценена.
-
swap different sized stringI cannot understand what is the difficulty in writing that? can you clarify your question.
Величие не Бога может быть недооценена.
-
Data encapsulation in CI found a article, with the help of example specifying how we can encapsulate the abstract types in C Just have a look with that [^]
Величие не Бога может быть недооценена.
-
convert CString to unsigned shortIf you dont bother to get the value in unsigned long then strtoul, wcstoul can be used[^].
Member 3653751 wrote:
unsigned short st =_com_util::ConvertStringToBSTR(str);
Well your code is not seems to be correct. It convert the LPTSTR to BSTR, it wont convert it to unsigned short :)
Величие не Бога может быть недооценена.
-
Memory leak!Why don't you check with WinDbg? It is essential for a programmer like u.
Величие не Бога может быть недооценена.
-
who can teach me EngLishPlease try to understand that, this not a English teaching forum :omg: If you have any problem related to MFC or C++ or VC++, ask here. You entered into a wrong forum.
Величие не Бога может быть недооценена.
-
how to call vb dll in vc++( iam using MFC) and vc6Then surely StringToCSV is not an exported function from that DLL check the depedency of the DLL, check if StringToCSV is shown in Exported functions.
Величие не Бога может быть недооценена.
-
how to call vb dll in vc++( iam using MFC) and vc6Check whether scdthndl.dll is loaded, means hLib is having value or it is also 0?
Величие не Бога может быть недооценена.