웹메일 서비스중 메일쓰기에 첨부파일을 드래그로 넣을수 있는 기능이 포함된 서비스가 있습니다. ActiveX로 만들어진 파일첨부 컴포넌트를 사용했을 경우인데 간혹 윈도우10 기반에 Internet Explorer를 사용해서 드래그 할 경우 안되는경우가 생깁니다. 원인은 Internet Explorer를 관리자 권한으로 실행 했을때 나타납니다. 웹메일 첨부가 필요한 상황이면 관리자 권한 실행을 안하면 정상작동합니다. 하지만 관리자 권한으로 실행한 이유가 다른데 있다면.. 절충안을 찾아야 될것 같습니다. 관리자 권한으로 실행해야 구동되는 로직이 있을때... 아래는 관리자 권한으로 실행하는 방법입니다.
분류 전체보기
mdadm으로 레이드를 생성후 resync작업할때 마운트 되어 있을경우 resync속도가 엄청 느립니다. resync는 umount후 하시는게 시간절약을 할수 있습니다. 아래는 raid1(2TB x 2) resync속도입니다. mount resync # umount /mnt/raid1 umount resync
c#프로젝트에 SQLite클래스 추가방법 도구 -> Nuget 패키지 관리자 -> 패키지 관리자 콘솔 install-package System.Data.SQLite 콘솔입력 솔루션 탐색기 참조리스트에서 추가된 클래스 확인할수 있습니다. SQLite Helper Class https://github.com/adriancs2/SQLiteHelper.net adriancs2/SQLiteHelper.net Contribute to adriancs2/SQLiteHelper.net development by creating an account on GitHub. github.com
PS/2 키보드, 마우스가 인식 못할경우 레지스트리를 수정하면 해결이 됩니다. 아래 경로에 Start값을 3에서 1로 변경후 리부팅하면 정상작동합니다. 컴퓨터\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt
https://steven-england.info/2014/10/28/c-helper-class-database-access-various-providers/ A C# helper class for database access for various providers - Steven England's Weblog If you need an module that helps you setting up quick access to multiple database providers, you will be very lucky with this code. I recognized it on code4forever.blogspot.com Here is the DBHelper class: /* Copyright Code4..