.NET 2003 include VC7.0 , Convert VC6.0 project to VC7.0 , then rebuild all . No need other dll , no need .NET framework.
bmzhao
Posts
-
migrating to .NET 2003 from visual studio 6.0 problem -
How to get the keyboard inputsDon't use Sleep(nDelay),Sleep will block keyboard input. Use OnTimer set delay time. Use OnKeyDown get the typed keyboard key
-
Why does my SetDIBColorTable fail ?The hMemDC must 24 bit color DC, you need a 256 color DC.
-
Display a disabled 24-bit imageuse BitBlt fuction with SRCAND or SRCPAINT
-
Problem with public variablesAdd Member Variable with 'public',not 'protect', than you can access it.
-
definition file?.def is defintion file. Open a .def file ,you can define exported function in it.
-
table like structure(multiple collumns)If you use dialog display data , you can add List Control(not List Box) to the dialog.
-
Cannot ever open fstream object in DLL?change "c:\test.log" to "c:\\test.log" must have double '\'
-
Erratic GDI+ redrawingDo draw in WM_PAINT , then the image always exist.
-
Static member funciton call non-static functionPass a pointer as a parameter of static function, call the non-static function by pointer.
-
changing defaut buttonUse resource eidt ,set the button default.
-
All I want to do is update my dialog box!Add control type var,use SetWindowText() to change update data.
-
Could I bring a parent window on the top of its child window?1.The child window can't use DoModal(),you can use Create(). 2.You can show child window hide,then the parent show all.
-
linker error for extern function1.rebuild all. 2.check myfunc() in file1.cpp