Grid Control Design-Time Row and Column Manipulation Features

WPF및 Silverlight의 그리드 컨트롤에 새롭게 추가된 그리드의 행과 열을 디자인 타임에서 조작할 수 있는 기능에 대한 시연 동영상이다. 매우 직관적으로 각 그리드의 항목들을 이동, 추가, 삭제할 수 있다. 마이크로소프트에서...

개발자를 위한 Visual Studio 2010 최신 PDF자료!!

참조 : http://blogs.msdn.com/b/popcon/archive/2010/06/11/visual-studio-2010-pdf-msdn.aspx 전체 자료 업로드:  Visual Studio DevCenter Visual Studio 2010 최신 문서 다운로드 1. Visual Studio 2010이 필요한 10가지 이유-라인업 및 기능소개 브로셔 2. Visual Studio 2010...

Moving to Visual Studio 2010 e-Book

마이크로소프트에서 제공하는 e-Book이다. Visual Studio 2003 버전에서부터 Visual Studio 2010으로 어떻게 이동하면 되는지에 대해 설명한...

Software Architecture Tactics 자료

인터넷에서 발견한 Software Architecture Tactics 자료입니다. 비트 커뮤니티의 한용수님의 자료입니다. 사이트 링크 :...

Parallel Programming in .NET 4.0

.NET 4.0에서 제공하는 병렬 프로그래밍(Parallel Programming) 라이브러리를 통해 이젠 매우 손쉽게 다 프로세스 프로그래밍을 할 수 있게 되었다. ^^ 사용법도 매우 간단하다. 1. TPL(Task Parallel Library) 간단히 기존의 For, ForEach...

Visual Studio 2010 정식출시

최신 개발 도구인 Visual Studio 2010이 공식적으로 출시되었다고 한다. 한글버전 출시일은 6월 정도라고 한다. 관련 사이트 :...

OAuth란?

OAuth란? Open API를 사용하기 위해선 인증이 필요합니다. 인증방식의 표준이 없기 때문에 제 각각의 방법으로 개발되고 있는 실정인데요 구글의 AuthSub, AOL의 OpenAuth, 야후의 BBAuth OAuth는 제각각의 인증방식을 표준화하고 가장 좋은...

ListBox 에서 선택된 다중항목 지우기

With ListBox1 ' If we have some selected items. If .SelectedIndices.Count > 0 Then ' Loop through selected indicies to get the index number of ' the selected item. ' We need to cound back through the list to avoid reindexing the ' the list as we go. For i As Integer =...

데이터베이스 연동시 DBNull 에러 피하기

데이터베이스 연동관련 프로그래밍을 할 때 DBNull 관련 예외를 처리하는것이 가장 중요하다고 생각합니다. 여기에서는 3가지 방법으로 DBNull 예외를 제어하는 방법을 살펴보도록 하겠습니다. 1. 데이터와 DBNull을 직접 비교하는...

Visual Studio에서 GAC에 등록한 Assembly가 참조추가에 출력되도록 설정하기

Summary When you are developing a class library, you may want Visual Studio .NET to list your library in the Add Reference dialog box on the .NET tab without the user having to browse for it. This issue is not resolved if you install your assembly to the global assembly cache, because the Add Reference...

« Older Entries