I own a YouTube Channel called NerdBirdOnline and 4 years ago I wanted to be a YouTuber and create tech based content. I posted 4 videos and then changed fields from IT to Marketing. However 4 years later I noticed that the videos I posted years ago, well one in particular (Basic Calendar DEMO (Visual Studio 2010 C#) – did very well. It is at just under 23,000 views and so well….. Here I am, starting it all back up again but now merged with a number of my hobbies.
What I did want to share though, are the scripts of code I write for all those who follow along with my videos. So for the first time, here they are.
Let’s Get Technical…
Project: Basic Calendar
Template: Windows Form
Programming Language: C#
Date: 06/01/2017
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; namespace NerdBirdCalendar2017 { public partial class Form1 : Form { public Form1() { InitializeComponent(); ControlBox = false; } private void pictureBox1_Click(object sender, EventArgs e) { groupBox1.Show(); } private void monthCalendar1_DateChanged(object sender, DateRangeEventArgs e) { textBox1.Text = monthCalendar1.SelectionStart.ToString(); } private void button1_Click(object sender, EventArgs e) { groupBox1.Hide(); } private void button2_Click(object sender, EventArgs e) { Application.Exit(); } } }

Any Thoughts?