본문 바로가기

분류 전체보기28

역사적인 4.27 판문점 선언 역사적인 4.27 판문점 선언 2018. 4. 27.
Updating Raspberry Pi Firmware ** Updating linux : 기본 업데이트 및 업그레이드 명령 1. sudo apt-get update 2. sudo apt-get upgrade ** Updating Raspberry Pi Firmware : Git 설치 및 라즈베리파이 f/ware upgrade 1. sudo wget http://goo.gl/1BOfJ -O /usr/bin/rpi-update && sudo chmod +x /usr/bin/rpi-update 2. sudo apt-get install git-core 3. sudo rpi-update 2016. 9. 7.
Excel vba 간단 셀 위치 지정하기 별로, 봐주기를 기대하고 쓰는게 아니라서요. 참고로만 하시기 바랍니다. EXCEL, VBA 프로그램 만드실때, 특정 셀위치에 값이 있고 이를 참고하고 싶을때가 있습니다. 그럴때는 a = Range("C10").Value Range("C10").Value = a 첫번째 줄은 , a 라는 변수에 현재 활성화된 시트의 c10 셀 내용을 넘기는 것이고, 두번째 줄은 , c10 셀에 a 가 가진 값을 입력하는 것입니다. 다음으로, 시트명을 지정하여 데이터를 주고 받는 겁니다. Workbooks("Sales.xls").Worksheets("DataInput").Range("C10").Value = 10 Worksheets("Sales").Range("D10").Value = Range("C1").Value 위와 같.. 2016. 9. 7.
씨언어 학습용 공개 컴파일러 Dev-C++ Dev-C++ 5.11 released It's been a while again. Enjoy the new features. :) Changes - Version 5.11 - 27 April 2015 Fixed crash related to double clicking on a compiler error when a selection was made. Upgraded the default compiler to TDM-GCC 4.9.2. Improved startup speed. Fixed Abort Compilation button not working anymore. Fixed crash in TCppParser.CheckForTypedefStruct. Fixed crash in TCppParser... 2016. 1. 12.