Calendar

Submitted by nabres on
This is the simple calendar. Also includes an agenda for recording daily events. It's written in Visual Studio CSharp 2017. I hope you will be useful and learn something from it.

Cool Calculator

Submitted by nabres on
This is the simple and cool calculator, with nice glassbuttons. Besides the basic operations, it has also implemented the power up and extraction of the square root. Also the glass buttons are implemented as well usercontrol and can be used in other applications. Enjoy it and hope to be helpful.

Simple Caculator

Submitted by hebamm on
This is a very simple calculator that allows you to calculate addition, subtraction, multiplication, and division. Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If (TextBox1.Text = " ") Then MessageBox.Show("enter value in num1") End If If (TextBox2.Text = " ") Then MessageBox.Show("enter value in num2") Else TextBox3