전체 글203 C# Winform 프로그래밍에서 IE 띄우기 IE를 띄우려면 2가지 방법이 있다. Process 클래스를 이용한 방법과 System32폴더에 존재하는 SHDocVw.dll을 참조해서 사용하는 것이다. 첫째 Process 클래스를 이용한 방법을 알아보자. 오나전 쉽다. 아래 코드를 보면 이해가 될 것이다. 여기서 Process 클래스의 WaitForExit(); 함수를 호출하면 Modal형태로 띄울 수 있게된다. ------------------------------------------------------------------------------------------------------------ private void button1_Click(object sender, EventArgs e) { ProcessStartInfo startInf.. 2020. 2. 27. richtexbox 단어찾고 자동 스크롤 Private Sub FindAndScroll(ByVal 검색단어 As String, ByVal 선택RichtextboxEX As RichTextBoxEx) Dim index As Integer = 0 Dim temp As String = 선택RichtextboxEX.Rtf 선택RichtextboxEX.Rtf = temp While index 2020. 1. 21. 특정문자 (') 치환법 begin tran update TB_M_ResponseGuide set 문의내용T = REPLACE(문의내용T, char(39), '"') where 문의내용T like '%'+char(39)+'%' commit 2019. 12. 13. Windows Update History 가져오기 사전에 Window - System32 기본 라이브러리 참조 필요 2019. 12. 9. 이전 1 ··· 13 14 15 16 17 18 19 ··· 51 다음