일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Web Service
- Android
- STS
- varags
- 이클립스
- jsp
- MSsql
- 웹 서비스
- C#
- TextBox
- scrollView
- 자바스크립트
- Apache Lucene
- Maven
- 컬럼명
- 웹뷰
- decompiler
- WebView
- html
- 안드로이드
- Eclipse
- 자바
- asp.net
- Redirect
- MANTIS
- Java
- SpringSource Tool Suite
- Bootstrap
- javascript
- MS-SQL
- Today
- Total
목록분류 전체보기 (286)
bboks.net™
SQL Server Management Studio를 실행하자. 그러면 서버에 연결 대화상자가 나타난다. 일단 인증 항목에서 Windows 인증과 SQL Server 인증이 있는데 SQL Server 인증을 사용하기위해 (만약 SQL Server 인증 사용이 설정되어 있지 않다면...) 설정하는 것 부터 시작하자. Windows 인증에 연결 버튼을 클릭하자. 서버 항목에 (1번 항목) 마우스 오른쪽 버튼을 누르고 메뉴 항목에서 2번 항목에서 속성을 클릭한다. 그러면 서버 속성 대화상자가 나타난다. 여기서 서버 인증 항목에서 SQL Server 및 Windows 인증 모드를 선택하고 확인을 누르자. 그러면 다음과 같이 대화상자가 나타난다. 확인을 클릭하자. 일단 서버를 다시 시작하기전에 SQL Server..
public static DialogResult ShowInputBox(string title, string promptText, ref string value) { Form form = new Form(); Label label = new Label(); TextBox textBox = new TextBox(); Button buttonOk = new Button(); Button buttonCancel = new Button(); form.Text = title; label.Text = promptText; textBox.Text = value; buttonOk.Text = "OK"; buttonCancel.Text = "Cancel"; buttonOk.DialogResult = DialogResul..
LinkedList list = new LinkedList(); list.AddLast(new Node(3.5)); list.AddLast(new Node(3.6)); list.AddLast(new Node(3.7)); list.AddLast(new Node(3.8)); list.AddLast(new Node(3.9)); list.AddLast(new Node(3.5)); list.AddLast(new Node(3.6)); list.AddLast(new Node(3.7)); list.AddLast(new Node(3.8)); list.AddLast(new Node(3.9)); Node selectedNode = list.ElementAt(4); LinkedListNode node = list.Find(s..