본문 바로가기

프로그램89

[ JAVA ] JavaFX 환경구축 과 프로젝트 생성 세세한 설명없이 굵직굵직 한 내용만 정리. 1. 이클립스 다운 및 설치 https://www.eclipse.org/ The Platform for Open Innovation and Collaboration | The Eclipse Foundation The Eclipse Foundation - home to a global community, the Eclipse IDE, Jakarta EE and over 350 open source projects, including runtimes, tools and frameworks. www.eclipse.org 2. 다운받은 파일 eclipse-inst-win64.exe 설치 (Enterprise Java Developers) 3. Help-Eclipse M.. 2019. 7. 13.
[C#] 콘솔 앱 (.NET Core)로 작성된DLL 리눅에서 실행키 위한 환경구축 C# 콘솔 앱(.NET Core)로 작성 Linux에서 .Net Core의 필수 구성요소 설치환경을 위한 종합정리 sudo rpm -Uvh https://packages.microsoft.com/config/rhel/7/packages-microsoft-prod.rpm sudo yum update sudo yum install libunwind libicu sudo yum install dotnet-hosting-2.0.8 sudo yum install aspnetcore-runtime-2.1 sudo yum install dotnet-sdk-2.1 실행방법 dotnet 파일명.dll Centos Version 확인 #cat /etc/readhat-release CentOS Linux release 7... 2018. 9. 21.
[ Flex 4.6 ] 플렉스에서 Cookie 쿠키 사용예 [ CookieUtil.as ]12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879package has3{ import flash.external.ExternalInterface; public class CookieUtil { public function CookieUtil() { } private static const FUNCTION_SETCOOKIE:String = "document.insertScript = function ()" + "{ " + "if (document.snw_setC.. 2017. 7. 26.
[ C# ] Embedded Compact7 용 프로그램 컴파일 속도향상 Microsoft Visual Studio 2008 의 C#으로 Windows Embedded Compact 7 용어플리케이션 개발할때.... 대략 폼이 10개 이상 넘어가면 간단히 문자하나 수정해도컴파일 하는데 10분이상 걸린다면... 개짜증 해결방법은C:\Windows\Microsoft.NET\Framework\v3.5 디렉토리에Microsoft.CompactFramework.Common.targets 파일을 우선 백업복사하시고파일을열어서12345678910 Colored by Color Scriptercs위부분을 찾아서 (대략 99번째라인 쯤에 있음 ^^)Condition="'$(SkipPlatformVerification)'=='true'" 이걸추가해주면 컴파일속도가 10배 이상 빨라집니다. 2017. 7. 1.