Files
Groupware/SubProject/FCOMMON/fSelectDay.cs
chikyun.kim 40946fb746 1910108 chi 열저장방식 변경(필드명으로 저장)
파트리스트 열 순서를 기존 사용 엑셀과 동일하게 정렬
   파트리스트 적용부위 납기일 항목 추가
   파트리스트 가져오기 메뉴에 적용부위, 납기일 항목 추가
   파트리스트 내보내기 기능 - 파일명을 프로젝트 명으로 자동 입력
2019-10-08 14:42:59 +09:00

32 lines
718 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace FCOMMON
{
public partial class fSelectDay : Form
{
public fSelectDay(DateTime dt)
{
InitializeComponent();
this.dtPick.SelectionStart = dt;
this.dtPick.SelectionEnd = dt;
}
private void button1_Click(object sender, EventArgs e)
{
DialogResult = System.Windows.Forms.DialogResult.OK;
}
private void fSelectDay_Load(object sender, EventArgs e)
{
}
}
}