허당 레몬도리
C# Tutorial
가. 언어유형/C# 2010. 4. 12. 14:58

http://www.java2s.com/Tutorial/CSharp/CatalogCSharp.htm

ComboBox Item 오류를 막는 방법
가. 언어유형/C# 2010. 2. 25. 10:22

ComboBox DropDownStyle이 DropDown일 경우 아이템이 제대로 된 것인지 확인해보자. (수정하지 못하게 할거라면 간단하다 DropDownStyle을 DropDownList로 선택하면 간단하게 해결된다.) VB If Not ComboBox.Items.Contains(ComboBox.Text) Then MessageBox.Show("정확한 XXX를선택하십시오") Exit Sub End If C# if (!ComboBox.Items.Contains(ComboBox.Text)) { MessageBox.Show("정확한 업무를 선택하십시오"); ComboBox.Focus(); return; }

clrscr() Visual Studio
가. 언어유형/C or C++ 2010. 1. 25. 11:12

친구가 clrscr()이 안먹는다고 conio.h이 참조 안되는것 같다구 해서 찾아본 결과 비주얼스튜디오에선 지원하지 않고 자동으로 clrscr()기능을 해주기 때문에 사용할 필요도 없다고 한다

Office PowerPoint 2007 창 두개 열기
나. 설치 및 설정/Other 2010. 1. 22. 10:55

파워포인트를 한개 열었을땐 상관없지만 두개 세개를 작업할땐 여간 답답한게 아니다 그래서 두개 창을 열때 첨부한 파일을 받아서 C:\Program Files\Microsoft Office\Office12 (필자는 여기에 설치되어있다) 위 폴더에 덮어씌워주면 두개 창을 열수 있다 혹시 모르니 원본파일 백업은 필수!

xml 이용한 SQL Command
가. 언어유형/C# 2010. 1. 18. 10:12

using System.Data; using System.Data.SqlClient; using System.Xml; class CommandXmlTest { public static void main() { string conStr = "Server=localhost;user id=sa;password=wpsjfpxj;database=northwind"; string xquery = "select * from Address FOR XML AUTO, ELEMENT"; SqlConnection conn = new SqlConnection(conStr); conn.Open(); SqlCommand xcomm = new SqlCommand(xquery, conn); XmlReader reader = null;..

WPF 예제 모음
가. 언어유형/C# 2010. 1. 14. 17:45

http://msdn.microsoft.com/ko-kr/library/ms771542.aspx

The designer could not be shown for this file because none of the classes within it can be designed

Forms and controls must derive from a base class that supports designers. If you are deriving from something, such as an inherited form or control, within the project you are working in, you need to make sure the project is built by selecting Build Solution from the Build menu. 디자인 화면을 열자 위 메시지가 뜨고 에러 화면이 되버린 프로젝트 경우 빌드를 해주고 디자인 창을 닫고 다시 열면 이상없이 잘 열린다

Make sure the application for the file type (.aspx) is installed.

After I created new WebSite in VS 2005 I'm getting this error ---------------------------Microsoft Visual Studio--------------------------- There is no editor available for 'C:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\WebSites\WebSiteUpload\Default.aspx'. Make sure the application for the file type (.aspx) is installed. ---------------------------OK ------------------..