본문 바로가기
728x90
반응형

전체 글42

[VB] 빌드 시 Error occurred during proessing of input file / Unable to find tool "ildasm.exe" error 해결 Eazfuscator.NET으로 난독화 후 Release로 변경하여 빌드 하니 아래와 같은 오류 발생 Error occurred during processing of input file '' --> Unable to find tool "ildasm.exe". Ensure .NET Framework SDK is installed. NBlogScrapHelper E:\Macro\NBlogScrapHelper\NBlogScrapHelper\EXEC 한참을 헤매이다가 해결방법을 발견하였다! find the file from somewhere under C:\Program Files (x86)\Microsoft SDKs\Windows 경로 : C:\Program Files (x86)\Microsoft SDKs\W.. 2022. 9. 8.
[c#] 비주얼스튜디오(Visual Studio) 탭(들여쓰기) 옵션 조절 복사하고 붙여넣기를 하거나 탭을 하면 이쁘게 들여쓰기가 되지 않는 현상을 발견했습니다ㅠㅠ 이 현상으로 소스에 손이 너무 많이가 결국 옵션을 찾았습니다. [디버그] > [옵션] > [텍스트 편집기] 옵션에서 C/C++[사용하는 언어] > 탭에서 들여쓰기를 스마트에서 블록으로 변경하면 끝! 2022. 7. 13.
[c#] devexpress 한글화 하기(다국어 적용) 다국어 파일은 아래에서 검색해서 다운받으면 됩니다. https://localization.devexpress.com/Localization/List 다운로드 후 실행하면 파일이 내려받아지는 데 파일이름을 [ko]로 변경하면 됩니다. 위치는 ja, es, de 파일 이 있는 [프로젝트 파일\bin\Debug] 에 저장하면 됩니다. 코드는 아래에서 확인하세요. using DevExpress.UserSkins; using DevExpress.XtraEditors; using System; using System.Windows.Forms; // 폰트 변경 /* Start : 다국어 적용 */ using System.Globalization; using System.Threading; /* End : 다국어 적용.. 2022. 7. 11.
[리눅스] 파일업로드 시 용량이 커서 안올라갈 경우 아래처럼 php.ini 설정하고 아파치 재시작하면 해결 가능하다. // php.ini 찾는 방법 # php --ini | grep php.ini upload_max_filesize = 20M 최대 업로드 파일 사이즈입니다. 원하시는 용량만큼 설정하시면 됩니다. post_max_size = 20M POST 방식으로 넘겨질 최대 데이터 사이즈 입니다. memory_limit = 128M 메모리 제한 설정값 // 설정값 확인 방법 # cat /etc/php.ini | grep memory_limit 2022. 6. 22.
728x90
반응형