Edward Lance Lorilla |
[ VISUAL STUDIO C# ] calendar USING MONTHCALENDAR Posted: 22 Jun 2021 06:00 AM PDT using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; // make sure that using System.Diagnostics; is included using System.Diagnostics; namespace Template { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void pictureBox1_Click(object sender, EventArgs e) { if (groupBox1.Visible == false) { groupBox1.Show(); } else { groupBox1.Hide(); textBox1.Text = null; } } private void monthCalendar1_DateChanged(object sender, DateRangeEventArgs e) { textBox1.Text = monthCalendar1.SelectionStart.ToString(); } } } |
You are subscribed to email updates from Edward Lance Lorilla. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
No comments:
Post a Comment