VB.NET 문자열 배열내 값찾기 Dim result As String() = Array.FindAll(str, Function(s) s.Contains(TextBox1.Text)) 프로그래밍언어/VB.NET 2013.07.13
클래스상속 using System; class Example { public Example(int property) { Property = property; } public int Property { get; private set; } } class Program { static void Main() { Example example = new Example(5); Console.WriteLine(example.Property); } } http://www.dotnetperls.com/class 프로그래밍언어/C# 2013.07.11
델리게이트 C# btn1.Click += delegate { btnclick(); }; vb addhndler btn1click addrassof btnclick 프로그래밍언어/C# 2013.07.11
VB.NET 동적컨트롤 생성 Dim btn As New Button btn.Text = "asdf" Me.Controls.Add(btn) AddHandler btn.Click, AddressOf click Me.Controls.Item(1).Text = "sd" 프로그래밍언어/VB.NET 2013.07.10
비베 속도향상 팁 45가지 비베 속도향상 팁 45가지 1. 프로젝트를 컴파일하기 전에, 베이직을 종료하고, 컴퓨터를 재시작하라.그리고, 프로젝트를 컴파일하게 되면, 메모리에 남아 있는 자질구레한 변수들이 사라지게 되고, 파일 사이즈를 줄일 수도 있다. 2. 프로젝트를 컴파일하기 전에 사용하지 않는 변수와 서.. 프로그래밍언어/VB.NET 2013.07.09
비동기 VB.NET _ Await http://msdn.microsoft.com/en-us/library/vstudio/hh156570.aspx Imports System.Threading '이렇게 쓰면 UI가 멈춤 Private Async Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click Dim result As String = Await WaitSynchronously() TextBox1.Text &= result End Sub Public Async Function WaitSynchronously() As Task(Of String) ' Import System.Threading for t.. 프로그래밍언어/VB.NET 2013.07.07
비베로 오토핫키처럼 이미지비교.. 오토핫키에서는 이미지서치란 기능이 있는데요. 화면에서 특정그림파일의 일치하는 화면의 좌표를 찾을수 있습니다. 현재화면에서 그림파일과 같은이미지를 형성하고 있는곳의 좌표를 출력하는거지요. 물론 일치율도 조절할수 있구요. 픽셀서치로 해당 픽셀의 색상값을읽어와 일치여.. 프로그래밍언어/VB.NET 2013.07.07
WinHTTP vs HTTPWebrequest vs XMLHTTP html 소스를불러온다던지 웹에 요청을 할때 I-NET , Winhttp, HTTPwebrequest(.NET) 정도가 있는데요.. 검색능력부족으로 제대로된 장단점을 찾을수 없네요.. 쓰던대로 고대로 써서 테스트했어요 사실 inet 은 닷넷에서 com오브젝트에 보이질 않고.. 해서 winhttp, httpwebreques, xmlhttp 이렇게 세개의 속도를 .. 프로그래밍언어/VB.NET 2013.07.07
INET vs WINHTTP WinHTTP vs. WinINet 3 out of 4 rated this helpful - Rate this topic With a few exceptions, WinINet is a superset of WinHTTP. When selecting between the two, you should use WinINet, unless you plan to run within a service or service-like process that requires impersonation and session isolation. Comparison of features Feature WinINet WinHTTP Credential Cache Allows all built-in.. 프로그래밍언어/VB.NET 2013.07.07