How to use a ColorDialog Box in C#

Submitted by joken on
This tutorial will show you how to use a ColorDialog Box in C#. The purpose of ColorDialog box on windows applications is that, it provides a selection of colors. And you can use the ColorDialog Box for various reasons such as letting the user set or change a color of an object or specifying the background color of a windows form application. The ColorDialog Box like as show below. d1 The figure above shows a list of colors, but if you want to have some customize or define your own color to be used.

Bakery Payroll System

Submitted by ashveen96 on
This is a simple Bakery Payroll System for a Pastry Shop. Front End: Microsoft Visual Basic 2010 Express Edition Back End: Microsoft Access 2010 OS Platform: Windows 7 N.B. The following components and tools MUST be installed in order to run the program ERROR-FREE DevExpress Universal 13.1.5 Infragistics NetAdvantage for Windows Forms 2012 Adobe Reader X (10.0) DataGridViewExtension Krypton Suite

How to Make a Simple MP3/MP4 Player Using VB.NET

Submitted by anupama.rhiyas on
Public Class Form1 Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load TextBox1.ReadOnly = True End Sub Private Sub AxWindowsMediaPlayer1_Enter(sender As Object, e As EventArgs) End Sub Private Sub cmdimport_Click(sender As Object, e As EventArgs) Handles cmdimport.Click OpenFileDialog1.Filter = "MP3|*.mp3" OpenFileDialog1.Title = "OPEn File" If OpenFileDialog1.ShowDialog

Palindrome in Java GUI

Submitted by donbermoy on
We all know that palindrome is a word or phrase that reads the same backward as forward. Here in this tutorial, we will create a program that can determine if the word inputted is a palindrome or not. Now, let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of palindrome.java. 2. Import javax.swing package.

How to Load data from Database into Combobox using C#

Submitted by joken on
In this tutorial, I will show you how to fill a Combobox with a Data from Microsoft Access Database. As well as how to search specific record from the database using the data in a combobox. To start building with this project, create a new C# project and design the user interface looks like as shown below. c1 Then save it as “ComboFilter” or whatever you want to name this application. After this step, let’s now create a new database in Microsoft Access named “studentdb”.

Remove Spaces: Trim, LTrim, and RTrim Functions in VB.NET

Submitted by donbermoy on
Today, i will teach you how to remove spaces using Trim, LTrim, and RTrim functions of VB.NET. These 3 functions removes spaces. Trim functions get rid of spaces in both left and right space. LTrim funcrion remove spaces from the left side of a text. And the RTrim functions remove spaces from the right side of a text. Now, let's start this tutorial! 1.

Video Upload System

Submitted by GeePee on

This project is a simple video upload system allowing the user to upload and save videos. In this project I add some restrictions to the file upload. The user can only upload mp4, mpeg1, mpeg4, avi, flv, mov, and wmv(you can also add other video extensions in this project) and the file size must be under 20mb(which you can also change the file size limit). For beginners who are using WampServer