Visual Basic .NET

Getting Local Time Using Zip Code in Visual Basic 2008

Submitted by janobe on
Today, I will teach you how to get the local time by using a zip code in Visual Basic 2008. If you want to find out the time in any countries around the world, all you have to do is to type the zip code of the country that you desire and then its local time will automatically appear.

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

OOP in .Net

Submitted by vongsay on
This project is a app sample of OOP in vb.net 2008 using sql 2005 database. the object class completed with insert, update and delete sub procedure. I hope you enjoy with this project

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.

Validate Leap Year in VB.NET Console

Submitted by donbermoy on
In this tutorial, i will teach you how to validate a year as leap year or not. Hence we already know that leap year has 366 days instead of the normal 365 days. Leap years occur every 4 years. And this fact is our formula in finding a leap year using the console application in vb.net. Now, let's start this tutorial! 1. Let's start with creating a Console Application for this tutorial by following

Simple DataBase application with Crystal Reports V2.1

Submitted by Hasan soherwardi on
Simple DataBase application with Crystal Reports V2.1 This a simple DataBase application, using VB.NET 2010, Ms Access 2007, Crystal Reports 2010... The many options in this app, insert, search, update, delete, navigation, DataGridView filtration, patient code auto generation, print report etc... I hope this tutorial is very helpful for any type of Database application development and its gives you many creative ideas... HAPPY PROGRAMMING

View Full Screen Mode in VB.NET

Submitted by donbermoy on
Sometimes, because of exploring complicated codes we often forget the basics and the need of some functions. Take note that in vb.net there is no property such as show full screen. In this tutorial, i will teach you how to create a program that can view full screen of your interface. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.