닷넷
-
C# string을 DateTime으로 변환닷넷/C# 2016. 7. 5. 13:50
string 형식에 날짜만 있는 경우 어떻게 DateTime으로 변환할 수 있을까. 1) DateTime으로 변환을 하려면 문자열이 날짜 + 시간을 포함하고 있어야 한다. 2) 단순히 문자가 나열되어 있으면 시스템이 이 문자가 연도인지 달인지 날인지 인식 못함. 3) 문자열을 재배치 해준다. 4) 날짜만 있으므로 시간이 필요하다. 로컬시간을 가져온다. 5) string을 DateTime으로 변환할 수 있다. 6) 변환한 dateTime을 DateTime 형식에 써야 하는 곳에 사용한다. 아래 소스 참고! string before = "20160115"; string after = before.Substring(0,4) + "-" + before.Substring(4,2) + "-" + before.Sub..
-
C# ComboBox 아이템 추가닷넷/WinForms 2016. 7. 5. 13:48
1. Class 추가 (ComboBoxItem.cs 만들어서 아래의 코드 추가하기) public class ComboBoxItem { public string Text { get; set; } public object Value { get; set; } public override string ToString() { return Text; } } 2. void _ComboBoxItem() { ComboBox cbx = new ComboBox(); cbx.DisplayMember = "Text"; cbx.ValueMember = "Value"; List list = new List(); ComboBoxItem item = new ComboBoxItem(); item.Text = ""; item.Value ..
-
C# TextBox 자동 완성닷넷/WinForms 2016. 7. 5. 13:46
1. Collection Add AutoCompleteStringCollection autoCollection = new AutoCompleteStringCollection(); // Collection 하나씩 추가 autoCollection.Add("Collection1"); autoCollection.Add("Collection2"); autoCollection.Add("Collection3"); //Collection 배열로 추가 autoCollection.AddRange(new string[] { Collection1, Collection2, Collecion3 }); textBox1.AutoCompleteCustomSource = autoCollection; textBox1.AutoComplet..
-
C# MSSQL 연결닷넷/C# 2016. 7. 5. 13:45
using System.Data.SqlClient; // MSSQL 연결 할 때 제일 먼저 선언해 줄 것! Sql 아닙니다. SqlClient 입니다. namespace Monitoring{ public partial class frmMain : Form { public frmMain() { InitializeComponent(); } private void frmMain_Load(object sender, EventArgs e) { SqlConnection sqlConnection = new SqlConnection("Server=서버주소;Database=데이터베이스이름;User ID=아이디;Password=비밀번호"); if (sqlConnection != null && sqlConnection.S..
-
C# Textbox를 mssql에 저장닷넷/WinForms 2016. 7. 5. 13:42
1> Form Design private System.Windows.Forms.Label label1; //방번호 private System.Windows.Forms.Label label2; //이름 private System.Windows.Forms.Label label3; //외박사유 private System.Windows.Forms.Label label4; //외박일정 private System.Windows.Forms.DateTimePicker dateTimePicker1; //외박시작일 private System.Windows.Forms.DateTimePicker dateTimePicker2; //외박만료일 private System.Windows.Forms.Label label5; //~ p..