전체
-
ip 의 port 체크 정규식dev/etc 2014. 3. 3. 14:40
http://social.msdn.microsoft.com/Forums/en-US/bc7f5bc2-ac30-434b-9ae9-908d602ee6ea/regular-expression-for-url-ip-with-port-number?forum=regexp 1.(6553[0-5]|655[0-2]\d|65[0-4]\d{2}|6[0-4]\d{3}|5\d{4}|[0-9]\d{0,3}) 2.^(?![7-9]\d\d\d\d) (?!6[6-9]\d\d\d) (?!65[6-9]\d\d) (?!655[4-9]\d) (?!6553[6-9]) (?!0+)(?.*)$
-
Windows 7 SDK installation failuredev/tool 2014. 1. 21. 00:59
http://stackoverflow.com/questions/1901279/windows-7-sdk-installation-failureC:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\SFX\vcredist_x86.exe installation failed with return code 5100Solution: Uninstall any existing Visual C++ 2010 redistributable.
-
-
QSqlQuery 로 가져온 결과의 문자열 인코딩이 변경되는 경우dev/QT 2013. 5. 24. 11:34
쿼리를 실행하여 가져온 레코드셋의 QVariant 에 저장된 QString 의 인코딩이 의도하지 않게 변경이 되어 한글이 깨져 출력이 되는 문제가 발생됨.raw 데이터를 QString 으로 변경하는 과정에서 사용되는 코덱을 명시적으로 지정하여 해결.QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));참고 - http://www.qtforum.org/article/22651/qt4-mysql5-charset-encoding-problem.html
-
-
내 Qt 플러그인이 동작하지 않는 100가지 이유dev/QT 2013. 2. 20. 11:40
http://canvoki.net/Codders/qtpluginnotloading.html 제목처럼 100가지는 아니지만 기본적으로 체크해야할 7가지를 설명하고 있다.A symbol is missingNot at the proper pathColiding librariesNot the proper compilation modeBad init xmlMissing Q_OBJECTThings that do not interfer plugin loading