Embed Videos From URL Link

Submitted by GeePee on

This project will teach you how to embed YouTube videos through URL link. On the home page, we have to create fields which require the name of the video, what category they belong and the url link of the video. Once posted, information will be saved in the database (only the 11 character code of the youtube video is being saved and not the whole url link) and displayed on their corresponding

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.