Monthly Archives: August 2023

Designing Digital Clock in Visual Programming

Designing Digital Clock in Visual Programming – Create a Windows forms application to design a digital clock using C# in visual Studio. Timer Control Timer control is used to executes a code block repeatedly at a specified interval. For example, to display time every second or backing up a folder every 10 minutes or writing… Read More: Designing Digital Clock in Visual Programming »

Loading

Blinking Text in Visual Programming C Sharp

Blinking Text in Visual Programming C Sharp – This is a windows forms application using a label control and timer control. This app will blink a text of label control. We will use timer control for this purpose. Source code using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using… Read More: Blinking Text in Visual Programming C Sharp »

Loading

Use Color From Color Dialog Box C Sharp

This windows forms application will display windows common dialog box for selection of color. The user will select a color. The click event handler for button will set the back ground color of the form according to the color selected by the user. Source Code using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing;… Read More: Use Color From Color Dialog Box C Sharp »

Loading

Programming Mouse Buttons in C Sharp

Programming Mouse Buttons in C Sharp – This is a windows forms application that will check whether the user has clicked a left mouse button or a right mouse button. It will response accordingly. Let us suppose that we will change the form’s back color to RED when user clicks left button and GREEN when… Read More: Programming Mouse Buttons in C Sharp »

Loading

Employee Database Save Find Record

Employee Database Save Find Record – C Sharp Database Application – Windows Forms Application in C Sharp / Visual Studio. Source Code using System; using System.Windows.Forms; using System.Data.OleDb; namespace EmployeeSaveFind { public partial class Employee : Form { OleDbConnection connection; public Employee() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { string constring =… Read More: Employee Database Save Find Record »

Loading

Insert Phone Record into Table Visual Programming

Insert Phone Record into Table Visual Programming – Consider a table Phone in database named Mobile. Write C Sharp Code to INSERT data INTO database after creating appropriate form using this table and database connection. Source Code using System; using System.Data.OleDb; using System.Windows.Forms; namespace MobileDB { public partial class Form1 : Form { OleDbConnection connection;… Read More: Insert Phone Record into Table Visual Programming »

Loading

Temperature Conversion Visual Programming C Sharp

Temperature Conversion Visual Programming C Sharp – Design a Windows Forms Application in visual studio using C Sharp. Add a label for program header in a label control. Use a text box to input temperature to be converted. When we click on any one of the radio buttons with option To Celsius or To Fahrenheit,… Read More: Temperature Conversion Visual Programming C Sharp »

Loading

Five Function Calculator Visual Programming in C Sharp

Five Function Calculator Visual Programming in C Sharp – Develop a Windows Forms Application using Visual Studio and C Sharp. Design user interface of this program by adding 2 text boxes for number 1 and number 2, 4 label controls, 2 buttons for calculate and reset, 5 radio buttons with text addition, subtraction, multiplication, division… Read More: Five Function Calculator Visual Programming in C Sharp »

Loading