본문 바로가기

전체 글277

C# Process.Start(string fileName) 이용 시에 0x80004005 발생 해결 방안 모색 C# Process.Start(string fileName) 이용 시에 0x80004005 발생 해결 방안 모색 매개변수에 입력되는 fileName , 즉 File이 위치하는 Path에도 정상적인 파일이 존재하는데도 Process.Start를 이용하여 실행시에 0x80004005 발생 시에 해결 방안을 모색해보았습니다. 마찬가지로 0x80004005의 경우 실행하는 프로젝트가 32bit 이며 , Process.Start로 실행하려는 파일은 64bit 프로세스 입니다. 서로 다른 프로세스(?)로 인식하여 파일이 존재하지 않는 것 처럼 오류가 발생 하였습니다. 해결 방안에 대해서는 2가지 방법을 모색 하였습니다.... ( 더 좋은 방안이 많을 것 같습니다... ) (1) 실행하는 프로젝트와 실행하려는 프로세.. 2023. 2. 28.
Tamir.SharpSSH 라이브러리를 이용한 SSH 접근 시에 Algorithm Negotiation Fail 메시지 발생 해결 케이스 출처 : [라즈베리파이4] ssh 접속시 Server responsded "Algorithm negotiation failed" 에러날때 (tistory.com) [라즈베리파이4] ssh 접속시 Server responsded "Algorithm negotiation failed" 에러날때 외부에서 라즈베리파이에 ssh 접근하고자 할때, 접속이 되지 않고 위와 같은 에러가 났다. 이는 ssh 접근시 key값의 암호화 방식을 규정하지 않아서 나온 에러였다. sshd_config 파일을 vi편집기나, GNU wonpaper.tistory.com 출처 : SSH 접속시 에러 (tistory.com) 2023. 2. 21.
[Eclipse] SVN Connector 오프라인 설치 진행 출처 : https://ssamdu.tistory.com/8 [이클립스] 이클립스 플러그인(plugin) 수동 설치(오프라인 상태에서 플러그인 설치) 여러 프로젝트를 나가보면 정말 자주 있는 슬픈 상황 중 하나가 인터넷이 되지 않는 경우이다. 이런 경우에 이클립스에 플러그인(plugins)을 jar 파일로 다운로드하여서 수동으로 설치해야 하는 경 ssamdu.tistory.com 왜 그런지 이유는 알 수 없지만 , 아래 사이트가 접속이 되지 않아 Eclipse -> Preference -> Version Control ( Team ) -> SVN -> SVN Connnector를 다운로드 할 수가 없었습니다 -_-;; http://community.polarion.com/ 오프라인 설치 한 과정은 아래와.. 2023. 1. 27.
[C#] ListView Control 동적으로 Control 추가 후 Scroll 시에 위치 조정 방안 [C#] ListView Control 동적으로 Control 추가 후 Scroll 시에 위치 조정 방안 출처 : Handling scroll event on listview in c# - Stack Overflow Handling scroll event on listview in c# I have a listview that generates thumbnail using a backgroundworker. When the listview is being scrolled i want to pause the backgroundworker and get the current value of the scrolled area, when th... stackoverflow.com ListView에 TextBox를.. 2022. 11. 23.
SHGetKnownFolderPath 함수 사용시에 바이러스로 인식되는 현상 Self Extractor 배포 프로젝트에 %appdata% Path를 구하기 위하여 아래와 같이 ShlObj_core.h 의 SHGetKnownFolderPath 함수 사용시에 , 백신에서는 해당 프로세스를 바이러스로 감지 하였습니다 -_-;; wchar_t *wszPath; if (SHGetKnownFolderPath(FOLDERID_RoamingAppData, 0, NULL, &wszPath) != S_OK) { std::cout 2022. 10. 26.
Virtual Box를 이용한 Ubuntu 20.04.5 Server live 버젼 설치 테스트 진행 및 KVM 반가상화 설치 Windows 11 이미지 설치 테스트 진행 1. Virtual Box를 이용한 Ubuntu 20.04.5 Server live 버젼 설치 시에 Kernel Panic 이 발생하며 멈추는 현상 해결 방안 저 같은 경우 VirtualBox 프로세스를 최신 버젼으로 설치 후 ( virtualBox 6.1.38 platform packages - Windows hosts ) 출처 : Oracle VM VirtualBox Oracle VM VirtualBox Welcome to VirtualBox.org! News Flash New September 2nd, 2022VirtualBox 6.1.38 released! Oracle today released a 6.1 maintenance release which improves stability and fi.. 2022. 10. 5.
[WPF] DatePicker Calendar 특정 일자 Day Button Style 변경 출처 : WPF: Enable Specific Dates Only In a DatePicker - TechNet Articles - United States (English) - TechNet Wiki (microsoft.com) WPF: Enable Specific Dates Only In a DatePicker - TechNet Articles - United States (English) - TechNet Wiki social.technet.microsoft.com [WPF] DatePicker Calendar 특정 일자 Day Button Style 변경 2022년 8월 21,22,23,25일자의 Day Button의 Style을 다르게 표시 하고자 하는 기능이 필요 하였다. CalendarTes.. 2022. 8. 25.
HttpListener를 이용한 Simple한 Web서버 구현 예제 출처 : https://gist.github.com/define-private-public/d05bc52dd0bed1c4699d49e2737e80e7 A Simple HTTP server in C# A Simple HTTP server in C#. GitHub Gist: instantly share code, notes, and snippets. gist.github.com public class HttpListenerWebServer { private HttpListener listner; private string url = string.Empty; private int requestCount = 0; private FormTray myTrayForm = null; public HttpListener.. 2022. 8. 18.
[C#] HttpWebRequest/HttpWebResponse Memory leak 현상 발생 관련 사항 출처 : c# - WebRequest/WebResponse Memory leak - Stack Overflow WebRequest/WebResponse Memory leak I have an .Net Framework #4.0 application that makes a large number of web requests using the WebRequest/WebResponse classes , as i see it has memory leak (or maybe i am doing something wrong) I W... stackoverflow.com .NET Framework의 HttpWebReqeust , HttpWebResponse Memory가 누수된다는 현상이 보고되고 있습니다. 4.5 이.. 2022. 8. 12.