zephyrer / advcombobox

Automatically exported from code.google.com/p/advcombobox
0 stars 0 forks source link

Can't compile! #14

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
http://www.codeproject.com/Messages/810079/Can-sharp180-t-compile.aspx

Solution:
http://www.codeproject.com/Messages/815052/Re-Can-t-compile.aspx

I'm using Visual Studio .net 2003 and had the same problem.

Change DropWnd.cpp, line 494, from:

void CDropWnd::OnActivateApp(BOOL bActive, HTASK hTask);

to:

void CDropWnd::OnActivateApp(BOOL bActive, DWORD hTask);

Change DropWnd.h, line 107, from:

afx_msg void OnActivateApp(BOOL bActive, HTASK hTask);

to:

afx_msg void OnActivateApp(BOOL bActive, DWORD hTask); 

Original issue reported on code.google.com by mathias....@gmail.com on 29 Sep 2010 at 9:24

GoogleCodeExporter commented 9 years ago
Changed HTASK to DWORD on related places.

Original comment by mathias....@gmail.com on 29 Sep 2010 at 7:36