WinForm
iTunes 현재 선택한 노래의 가사 검색 프로그램 개발
iTunes 현재 선택한 노래의 가사 검색 프로그램 개발
2013.06.26iTunes 현재 선택한 노래의 가사 검색 프로그램 개발 이번 내용에서는 iTunes에서 선택한 노래 제목을 검색해오는 프로그램을 만들어 볼겁니다. 1. iTunes 참조 추가 Visual Studio Window Form 프로젝트를 생성해서 프로젝트에 참조를 추가합니다. 추가할 참조는 iTunes를 제어할거니깐.. iTunes 설치된 폴더의 iTunes.exe 파일을 참조로 추가해주셔도 되고, COM에 노출되어 있는 ' iTunes 1.13 Type Library ' 를 찾아서 참조에 추가하셔도 됩니다. CoClass로 제어가능하도록 노출되어 있어서 플러그인이나 이 게시글에 적힌대로 제어가 가능해지는 것이죠. http://dot-totally.co.uk/software/itunescon/javadoc-..
C# : TextBox Auto Scrolling
C# : TextBox Auto Scrolling
2009.04.20C# : TextBox Auto ScrollingTextBox의 스크롤을 지정하기 위해 일단 Multiline 모드를 설정하고, Scrollbar가 Vertical로 되어 있다면 더 좋겠죠. 1. 다음과 같이 TextBox에 값을 설정 후 textBox.Text = "some string"; 스크롤이 생길 정도의 문자열을 넣어도 스크롤은 위에 고정되어 있습니다. 계속 바닥으로 스크롤이 되어있기 원한다면 textBox.Select(textBox.Text.Length, 0); textBox.ScrollToCaret(); 위와 같은 코드를 값을 입력 후 실행해 줍니다. 2. 문자열 값을 추가하고 항상 scroll을 바닥으로 하고 싶다면. textBox.Text += "some string"; 위와 같은 코드는..
Use WebBrowser and shdocvw.dll for POST Data sending
Use WebBrowser and shdocvw.dll for POST Data sending
2009.02.16C# 윈폼에서 WebBrowser 컨트롤 또는 shdocvw.dll 을 이용하여 브라우저를 사용할 일이 있다. 이럴때 어떤 페이지에 post 데이터를 넘거야 하는데 다음과 같은 코드를 활용하여 하면 된다. string strUrl = @"http://somepage.com/Default.aspx"; byte[] SomeBytes = null; string FormParams = "login=megalogin&password=hardpassword"; SomeBytes = Encoding.UTF8.GetBytes(FormParams); string AdditionalHeaders = "Content-Type: application/x-www-form-urlencoded" + Environment.NewLi..
C# Drag & Drop event handling
C# Drag & Drop event handling
2007.07.20.net Window form에서 컨트롤을 드래그 드롭하는 예제를 보면서 DragEnter와 DragDrop이벤트를 발췌해서 소개한다. /// /// The DragEnter event of the target control fires when the mouse enters /// a target control during a drag operation, and is used to determine if a drop /// will be allowed over this control. This generally involves checking the type /// of data being dragged, the type of effects allowed (copy, move, etc.), /// and..