본문 바로가기

C# 65

[C#] WebView2 Control 이용 PDF 파일 오픈 후 Key , mouse 입력 인쇄 시도 [C#] WebView2 Control 이용 PDF 오픈 후 Key , mouse 입력 인쇄 시도 WebView2 Control을 이용하여 IE Edge 브라우져에서 PDF 파일을 오픈 한 후 await webView2.CoreWebView2.ExecuteScriptAsync("window.print();"); 를 호출 하여 프린트 다이얼로그를 표시 한 후 해당 프린트 다이얼로그의 Handle을 찾는 것을 시도 후 마우스 왼쪽 버튼을 클릭 한 후 엔터 키를 입력 하게 시도 하였습니다. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; us.. 2022. 5. 26.
[C#] WebBrowser Control 로 인쇄 시에 Footer ,Header 제거 테스트 출처 : Need advice on removing header/footer during HTML printing | Visual Studio.Net Help Community (dotnet.community) Need advice on removing header/footer during HTML printing I have the IE web control in my app - and Im using the EXECWB command to print the current page. However, Im trying to remove the header / footer that is automatically placed on the page. The only real way Ive found to do.. 2022. 4. 13.
[RTSP] TCPClient를 이용하여 OPTIONS 요청 결과 받기 RTP 패킷에 대한 구조나 개념에 대한 학습 방법을 찾아 보고 있습니다. TCP 전문을 전송하여 OPTIONS 응답에 대한 결과를 받아 보는 테스트를 진행 하였습니다. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.Net.Sockets; namespace BlockingSocketTest { class Program { static void Main(string[] args) { TcpClient client = new TcpClient(new IPEndPoint(IPAddress.Parse("192.168.14.15"),0)); // RTSP.. 2022. 3. 3.
VirtualBox 호스트와 멀티캐스트(Multicast) 패킷 송/수신 테스트 진행 출처 : #8698 (VirtualBox Host-Only Network Adapter prevents multicast traffic) – Oracle VM VirtualBox #8698 (VirtualBox Host-Only Network Adapter prevents multicast traffic) – Oracle VM VirtualBox After installing Oracle VirtualBox and VirtualBox installing the "VirtualBox Host-Only Network" on my Windows 7 64-bit machine, I am no longer able to receive multicast streams on the host machine. This .. 2022. 3. 2.