..
This commit is contained in:
35
SubProject/FCOMMON/fSelectDays.cs
Normal file
35
SubProject/FCOMMON/fSelectDays.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
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 fSelectDays : Form
|
||||
{
|
||||
public fSelectDays(DateTime dt,DateTime dte)
|
||||
{
|
||||
InitializeComponent();
|
||||
this.dts.SelectionStart = dt;
|
||||
this.dts.SelectionEnd = dt;
|
||||
|
||||
this.dte.SelectionStart = dt;
|
||||
this.dte.SelectionEnd = dt;
|
||||
|
||||
}
|
||||
|
||||
private void button1_Click(object sender, EventArgs e)
|
||||
{
|
||||
DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||
}
|
||||
|
||||
private void fSelectDay_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user