첨부파일 byte 용량 계산 [bytes, KB, MB, GB, TB, PB으로 변환]
12345678910111213141516171819//byte를 용량 계산해서 반환 function byteCalculation(bytes) { var bytes = parseInt(bytes); var s = ['bytes', 'KB', 'MB', 'GB', 'TB', 'PB']; var e = Math.floor(Math.log(bytes)/Math.log(1024)); if(e == "-Infinity") return "0 "+s[0]; else return (bytes/Math.pow(1024, Math.floor(e))).toFixed(2)+" "+s[e]; }Colored by Color Scriptercs첨부파일 같은 파일 사이즈를 받아서 byte, KB, MB, GB, TB, PB 형을 ..
더보기
VS2013 mfc static bitmap 추가시 버그 (error RC2108: expected numerical dialog constant)
출처 : http://fantaziulo.blog.me/220208647844 인터넷에서 돌아다니는 오픈소스를 받아서 개발하는 도중에 아래와 같은 에러가 발생하였다.error RC2108: expected numerical dialog constant PUSHBUTTON 에서 에러가 나길래 아래와 같이 수정했는데도 에러가 났다...문제는 PUSH BUTTON 이 아니라 PUSH BUTTON 위에 CONTROL이 있었는데 해당 CONTROL을 아래와 같이 수정하면 된다 오류 : CONTROL "",IDC_CHARTVIEWER0,91,52,15,13,NOT WS_GROUP정상 : CONTROL "",IDC_CHARTVIEWER0,"Static",SS_BITMAP,119,1,15,13 vs2013에서 mfc에..
더보기