'메모' 카테고리의 다른 글
[기사스크랩] 넥슨, 프로그래밍 대회 ‘NOS' (0) | 2013.06.05 |
---|---|
[가젯] CPU 모니터링 (0) | 2013.06.01 |
[본문스크랩] c# 별도의 메일서버없이 gmail을 이용해서 메일을 보내자 (0) | 2013.05.26 |
윈도우 서버 2008 - 교육 1일 목차 (0) | 2013.05.23 |
쉽고 빠르게 코딩하려고 MS를 공부하려하는데... (0) | 2013.05.12 |
[기사스크랩] 넥슨, 프로그래밍 대회 ‘NOS' (0) | 2013.06.05 |
---|---|
[가젯] CPU 모니터링 (0) | 2013.06.01 |
[본문스크랩] c# 별도의 메일서버없이 gmail을 이용해서 메일을 보내자 (0) | 2013.05.26 |
윈도우 서버 2008 - 교육 1일 목차 (0) | 2013.05.23 |
쉽고 빠르게 코딩하려고 MS를 공부하려하는데... (0) | 2013.05.12 |
별도의 메일서버없이 gmail을 이용해서 메일을 보내자.. | 한호정 | 평점: 없음 | 조회: 779 |
필수 : using System.Net.Mail;
SmtpClient client = new SmtpClient("smtp.gmail.com", 587); // 희안하게 465는 않되네요...-_-;;
client.UseDefaultCredentials = false;
client.EnableSsl = true; // SSL 쓴다는 소리
client.DeliveryMethod = SmtpDeliveryMethod.Network; GMAIL 인증
client.Credentials = new System.Net.NetworkCredential("구글 아이디", "구글비밀번호");
MailAddress from = new MailAddress("보낼사람표시", "보낼사람 이름", System.Text.Encoding.UTF8);
MailAddress to = new MailAddress("받을 사람 이메일 주소 ");
MailMessage message = new MailMessage(from, to);
message.Subject = "제목";
message.Body = "본문";
message.SubjectEncoding = System.Text.Encoding.UTF8;
message.BodyEncoding = System.Text.Encoding.UTF8;
try
{
// 동기로 메일을 보낸다.
client.Send(message);
MessageBox.Show("전송되었습니다", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
// Clean up.
message.Dispose();
}
이곳에 가입해서 처음쓴 글이네요..^^
이제 막 고등학교 입학하는 학생입니다. 잘부탁드려요.
[가젯] CPU 모니터링 (0) | 2013.06.01 |
---|---|
[파일] 안드로이드 SQLite Spy 다운로드 (0) | 2013.05.28 |
윈도우 서버 2008 - 교육 1일 목차 (0) | 2013.05.23 |
쉽고 빠르게 코딩하려고 MS를 공부하려하는데... (0) | 2013.05.12 |
MVVM 간단한 정의 (영어) (0) | 2013.05.07 |
1. 윈도우 서버 2008 개요
2-1. vmware 설치 및 운영체제 설치
2-2 초기구성작업
- 시간, 업데이트, 서버 이름 설정
- 텔넷 설치
- 원격접속 사용자 당 세션늘리기
- 방화벽 설정 (개인, 공용, 도메인 차이점)
- 역할,기능 설치
# SID, sysprep
# 서버관리자>구성>고급 보안이 포함된 Window 방화벽
4 파일시스템
- 파일시스템 보안관리
- 공유폴더 관리
- 할당량 지정
- 파일 시스템 리소스 관리자
[파일] 안드로이드 SQLite Spy 다운로드 (0) | 2013.05.28 |
---|---|
[본문스크랩] c# 별도의 메일서버없이 gmail을 이용해서 메일을 보내자 (0) | 2013.05.26 |
쉽고 빠르게 코딩하려고 MS를 공부하려하는데... (0) | 2013.05.12 |
MVVM 간단한 정의 (영어) (0) | 2013.05.07 |
[본문스크랩] HTML_테이블만들기 (0) | 2013.05.05 |
MS c#, ASP.NET
사용자 편의를 많이 신경써주었다.
편하게 코딩을 하고 편하게 결과를 낼 수 있다고 생각됬지만,
완전히 배우기 전까지는, 자동으로 처리해주는 부분에 대하여 무지하기 때문에
어디서 잘못됬는지 알기가 힘들다.
코딩 외에 결과를 내면서 붙닥치는 문제에 시간소모가 크다.
[본문스크랩] c# 별도의 메일서버없이 gmail을 이용해서 메일을 보내자 (0) | 2013.05.26 |
---|---|
윈도우 서버 2008 - 교육 1일 목차 (0) | 2013.05.23 |
MVVM 간단한 정의 (영어) (0) | 2013.05.07 |
[본문스크랩] HTML_테이블만들기 (0) | 2013.05.05 |
[MS-SQL] 테이블 스키마 조회 (0) | 2013.02.07 |
MVVM: an architectural pattern used in software engineering that originated from Microsoft that is specialized in the Presentation Model design pattern. It is based on the Model-View-Controller pattern (MVC), and is targeted at modern UI development platforms (WPF and Silverlight) in which there is a UX developer who has different requirements than a more "traditional" developer. MVVM is a way of creating client applications that leverage core features of the WPF platform, allows for simple unit testing of application functionality, and helps developers and designers work together with less technical difficulties.
VIEW: A View is defined in XAML and should not have any logic in the code-behind. It binds to the view-model by only using data binding.
MODEL: A Model is responsible for exposing data in a way that is easily consumable by WPF. It must implement INotifyPropertyChanged and/or INotifyCollectionChanged as appropriate.
VIEWMODEL: A ViewModel is a model for a view in the application or we can say as an abstraction of the view. It exposes data relevant to the view and exposes the behaviors for the views, usually with Commands.
윈도우 서버 2008 - 교육 1일 목차 (0) | 2013.05.23 |
---|---|
쉽고 빠르게 코딩하려고 MS를 공부하려하는데... (0) | 2013.05.12 |
[본문스크랩] HTML_테이블만들기 (0) | 2013.05.05 |
[MS-SQL] 테이블 스키마 조회 (0) | 2013.02.07 |
[자바스크립트] 랜덤함수 응용 (0) | 2013.02.07 |
쉽고 빠르게 코딩하려고 MS를 공부하려하는데... (0) | 2013.05.12 |
---|---|
MVVM 간단한 정의 (영어) (0) | 2013.05.07 |
[MS-SQL] 테이블 스키마 조회 (0) | 2013.02.07 |
[자바스크립트] 랜덤함수 응용 (0) | 2013.02.07 |
[MS-SQL] 함수와 프로시저의 차이점 (0) | 2013.02.07 |
sp_help 테이블
MVVM 간단한 정의 (영어) (0) | 2013.05.07 |
---|---|
[본문스크랩] HTML_테이블만들기 (0) | 2013.05.05 |
[자바스크립트] 랜덤함수 응용 (0) | 2013.02.07 |
[MS-SQL] 함수와 프로시저의 차이점 (0) | 2013.02.07 |
[IOS] 코코아 터치란 무엇인가? - 02 (0) | 2013.02.06 |
Math.random()
=> 실행 결과 0이상 1미만의 실수
var num = 101 ;
Math.floor(Math.random()*num);
MVVM 간단한 정의 (영어) (0) | 2013.05.07 |
---|---|
[본문스크랩] HTML_테이블만들기 (0) | 2013.05.05 |
[MS-SQL] 테이블 스키마 조회 (0) | 2013.02.07 |
[MS-SQL] 함수와 프로시저의 차이점 (0) | 2013.02.07 |
[IOS] 코코아 터치란 무엇인가? - 02 (0) | 2013.02.06 |
함수 | 프로시저 | |
테이블 반환 | 1개만 가능. SQL문장 안에서 활용이 가능하다 | 다수의 테이블을 반환할 수 있다. |
외부 개체 접근 | 다른 테이블의 내용을 갱신할 수 없다. | 가능 |
독립성 | 독립적으로 실행이 불가능. SQL 구문의 재료로서 이용되어야 관찰이 가능 | 독립적으로 실행가능 exce 써주고, 변수 넘기면 끝 |
MVVM 간단한 정의 (영어) (0) | 2013.05.07 |
---|---|
[본문스크랩] HTML_테이블만들기 (0) | 2013.05.05 |
[MS-SQL] 테이블 스키마 조회 (0) | 2013.02.07 |
[자바스크립트] 랜덤함수 응용 (0) | 2013.02.07 |
[IOS] 코코아 터치란 무엇인가? - 02 (0) | 2013.02.06 |
전 강좌에서는 코코아 터치가 iOS에서 어떠한 위상을 차지하는지 배웠다.
이번에는 코코아터치 레이어가 다루는 클래스에 대해서 알아보고자 한다.
$$ Cocoa Fundamentals
코코아 터치는 다음과 같은 클래스들로 이루어져 있다.
$ Core Application Classes
$ Data Type Classes
$ Interface Classes
---------------------------------------------------------------------------------------------
각각의 클래 집합들은 아래와 같다.
When you create a new application with even the most basic user interaction, you’ll be taking
advantage of a collection of common core classes. Many of these you won’t be touching, but
they still perform an important role. Let’s review several of these classes now.
- The Root Class ( NSObject )
- The Application Object ( UIApplication )
- Window Objects ( UIWindow )
- Views ( UIView )
- Responders ( UIResponder )
- Onscreen Controls ( UIControl )
- View Controllers ( UIViewController )
$ Data Type Classes
An object can potentially hold data. In fact, most of the classes we’ll be using contain a number
of properties that store information about an object. There are, however, a set of Foundation
classes that you use throughout this book for the sole purpose of storing and manipulating infor-
mation
- Strings ( NSString/NSMutableString )
- NSMutableString
- Arrays ( NSArray/NSMutableArray)
- Dictionaries ( NSDictionary/NSMutableDictionary )
- Numbers ( NSNumber/NSDecimalNumber )
- Dates ( NSDate )
- URLs ( NSURL )
$ Interface Classes
MVVM 간단한 정의 (영어) (0) | 2013.05.07 |
---|---|
[본문스크랩] HTML_테이블만들기 (0) | 2013.05.05 |
[MS-SQL] 테이블 스키마 조회 (0) | 2013.02.07 |
[자바스크립트] 랜덤함수 응용 (0) | 2013.02.07 |
[MS-SQL] 함수와 프로시저의 차이점 (0) | 2013.02.07 |