Google Map Application in Android

Submitted by donbermoy on
Hi. I just want to share this android application in creating and displaying Google Map. I used the Basic4Android software in creating this application. I included the full source code in this application and also the GoogleMap Library in which you are going to put it in your b4a software library. It will be very helpful to your project and to your thesis software. Hope this app helps! :) Visit and like my page on Facebook at: https://www.facebook.com/BermzISware Mobile: 09488225971

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”.