개발
-
NetBeans개발/IDE 2012. 7. 26. 16:36
AWT 한글 깨질 때[Project Properties|Run|VM Options]"-Dfile.encoding=MS949"
-
the WinAsm Studio IDE개발/IDE 2012. 2. 26. 18:08
the WinAsm Studio IDE a free Integrated Development Environment IDE for developing 32-bit Windows and 16-bit DOS programs using the Assembler The Microsoft Macro Assembler (MASM) is supported inherently the FASM Add-In adds support for FASM and other assemblers intellisense which will assist you in creating Windows API based programs user-created add-ins Includes a powerful Visual Resource Editor
-
커스텀 AppWizard개발/Tool 2011. 3. 31. 11:53
newproj.inf 주석 $$// 매크로 $$Root$$ or $$root$$ $$// 프로젝트 이름 $$IF(..) .. $$ENDIF format 'sourceResName'\t'destFileName' Template에 있는 파일을 복사 /{..} $$// create new subdir :{..} $$// the file should be treated as a resource Template\confirm.inf 프로젝트 생성시 마지막에 확인하는 문구 CCustomAppWiz m_Dictionary[] "PROJTYPE_DLL"|"PROJTYPE_MDI"|"PROJTYPE_SDI"|"PROJTYPE_DLG"|"PROJTYPE_LIB"|"PROJTYPE_CON" .InitCustomAppWiz(..
-
VS2010개발/Troub 2010. 11. 22. 17:29
RC : fatal error RC1106: invalid option: -ologo http://www.go4answers.com/Example/build-error-rc1106-2010-rc1-2009.aspx 빌드 (web): 'FredCK.FCKeditorV2.FileBrowser.Config' 형식을 로드할 수 없습니다.Manually copy the FredCK.FCKeditorV2.dll file to the "bin" directory of your web site. Then build your website.orRight-click "References" in your Visual Studio.NET project in the "Solution Explorer". Use "Browse" ..
-
소프트웨어 공학개발/기타 2010. 9. 1. 22:26
개발을 하기 위한 린 접근법조리법을 만드는 것린 생산 실천방법요리를 만드는 것 애자일 소프트웨어 개발 참조 사이트:http://blog.creation.net/527http://swarchi.tistory.com/11 http://www.martinfowler.com/articles/newMethodology.html http://swarchi.tistory.com/12 http://www.developerdotstar.com/mag/articles/reeves_design.html
-
VC2005개발/Troub 2010. 8. 27. 15:13
C2226멤버함수 인자의 타입에 오류가 있는 경우 무조건 제일 처음 인자 타입을 표시 http://support.microsoft.com/kb/148652 http://blog.naver.com/PostView.nhn?blogId=kirba518&logNo=150021382785&redirect=Dlog&widgetTypeCall=true&topReferer=http://kaludin.egloos.com/2461933 http://himskim.egloos.com/1352834
-
MFC개발/Troub 2010. 7. 17. 17:49
Windows 95 Windows NT 4.0 // 0x0400 VC98 Windows 98 Windows Me Windows 2000 // 0x0500 Windows XP // 0x0501 #if _WIN32_IE >= 0x0500 _AFXCMN_INLINE COLORREF CTreeCtrl::GetLineColor() const { ASSERT(::IsWindow(m_hWnd)); return (COLORREF)::SendMessage(m_hWnd, TVM_GETLINECOLOR, 0, 0L); } _AFXCMN_INLINE COLORREF CTreeCtrl::SetLineColor(COLORREF clrNew /*= CLR_DEFAULT*/) { ASSERT(::IsWindow(m_hWnd)); r..
-
플러그인 - NSIS개발/배포 2010. 1. 25. 15:21
getuservariable() INST_0 setuservariable() popstring() #include "pluginapi.h" extern "C" __declspec(dllexport) void KillProc(HWND hwndParent, int string_size, char *variables, stack_t **stacktop) { EXDLL_INIT(); char parameter[200]; char temp[10]; int value; popstring(parameter); value = MY_FUNCTION(parameter); setuservariable(INST_R0, itoa(value, temp, 10)); } 참조 사이트: http://jjjryu.tistory.com/..