.Net Project 538

SQL 쿼리 로컬 데이터 베이스로 적용하기

1. 실행화면) 2. 위의 내용 디자인 페이지 DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 3. 코드 비하인드 페이지 입니다 ..저장하기 버튼 클릭시..) string s = txtSql.Text; string con = s.Replace("Go", ";"); string[] arr = con.Split(';'); using (TransactionScope ts = new TransactionScope(TransactionScopeOption.RequiresNew)) { for (int i = 0; i < arr.Length - 1; i..

05. WPF Windows 바탕화면 변경하기

1. 화면 UI 구성 2. F7 버튼 클릭 하여 코드 비하인드 페이지 작성 (WPF API 사용하여 다음과 같이 작성하여 바탕화면을 변경하도록 하고 있습니다) using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Window..

.Net Project/WPF 2010.05.21

04. WPF PatientReferrals

1. 화면 UI 구성 - > Page 폴더 생성 -> 2. 위의 내용 .Xaml 파일을 추가 하도록 한다 3. 화면 디자인 구성 3 - 1 DescriptionPage 3 - 2 DetailsPage 3 - 3 Summary Page 4. F7 번을 클릭하여 코드 비하인드 페이지 작성 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System..

.Net Project/WPF 2010.05.21

03. WPF 웹 브라우저 실행하여 날짜값 출력

1. 화면 UI 구성 2. F7 통한 코드 작성 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; namespace WpfBrowse..

.Net Project/WPF 2010.05.21

02. WPF HelloWorld 텍스트 박스 내용 메시지 박스에 출력

1. 화면 UI 디자인 2. 디자인 모드에서 F7 코드 비하인드 페이지에서 다음과 같이 이벤트를 추가하여 준다 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System...

.Net Project/WPF 2010.05.21

쿼리문 총 정리 T-Sql

T-SQL 총 정리 --기본적인T-SQL 구문정리 --원하는데이를가져와주는기본적인 Select ~ From --일반적으로가장많이사용하는구문이다. --Select 구문형식이다Select [열이름], [열이름] From [테이블이름] --Use 구문: 어떠한데이터베이스를사용할것인지설정가능하도록도와주는구문이다Use [데이터베이스이름] 다음과같이세팅완료후사용한다. --Use Test : Select *From TT_BlogOption 다음의사용방법구문이다 -------------------- --실습-1 -------------------- /* 데이터베이스이름, 스키마이름, 테이블이름, 필드이름이 정확히기억나지 않거나, 각이름의철자가확실하지않을때찾아서조회하는방법 을실습하도록하자. 지금조회하고자하는내용이Adve..