분류 전체보기 172

엑셀 VBA 코드 읽기 프로텍션 크랙 및 방어 방법

엑셀 VBA 코드를 타인이 읽지 못하게 하는 것은 매우 어렵다. 엑셀 자체기능으로 제공하는 VBA Code에 대한 protection기능은, 이를 뚫는 방법이 너무많이 알려졌고, 그 방법이 너무 쉽기 때문이다. 엑셀 VBA코드를 크랙하는 방법 및 그 수준을 정리해봤다. --- Crack에 대해 VBA Code를 방어(읽지 못하게)할 수 있는 방안들이 몇 개 있는데, 그 방안들이 위의 Crack방법에 대해 어느정도 방어능력을 가지는 지도 정리해봤다.

잡다/크랙 2022.02.04

Coding FFT using Excel VBA: no limitation of data size and O(nlogn) performance

The FFT Excel program is updated to v2.0. You can download it on the bottom of this page or the new page. The new version performs FFT for 64 kBytes data in 1 second. (235ms for 16 kBytes data) FFT(Fast Fourier Transformation) can be done in the Excel's internal function. However it has limitation of data size 4096 and it works a little slow. Therefore, I decided to make FFT code with Excel VBA...