Show Running Applications in VB.NET

Submitted by donbermoy on
For the past months, I already made a tutorial regarding on showing all the process of computer with this link http://www.sourcecodester.com/tutorials/visual-basic-net/6763/show-lists-computer-process-vbnet.html. Now, in this tutorial, i will create a program that all your opened computer applications will be displayed. Now, let's start this tutorial! 1.

How to Create a Web Browser in Visual Basic

Submitted by GeePee on
Introduction: Welcome to my tutorial on how to create a web browser in Visual Basic. Steps of Creation: Step 1: First we want to create a form with; Button1 - Go button2 - home button3 - back button4 - forward textbox1 - address/url webbrowser1 - web browser Step 2: Next we want to go in the Go button and check if the url is valid, if it is we want to navigate to it through the web browser.

Aero Glass Screen Effect in VB.NET

Submitted by donbermoy on
Today, I will teach you how to create a program that has a screen effect of aero glass in vb.net. We often see an aero glass effect as a theme in windows 7. Now, we will start the 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. Next, add only a Timer named Timer1 in your Form. 3.

Bomb Explode! (An Android App Strategy Game)

Submitted by donbermoy on
This android app named Bomb Explode! is a capstone project that I made for a particular school. BOMB EXPLODE! is a Human Versus Computer strategy game. The objective is to eliminate the opponent by blowing up their BOMBS. Each player takes a turn by placing a BOMB in a square on the board. The human player can start by placing the first BOMB or have the computer start by pressing the Computer First button. A player can place the BOMB in any square not occupied by the opponent.

How to Create a Website URL Verifier in Visual Basic

Submitted by GeePee on
Introduction: Welcome to a tutorial on how to create a website/url verifier and checker in Visual Basic. Steps of Creation: Step 1: First we want to create a form with a textbox to contain the website url, button1 to verify the url format and button2 to check the website response. Step 2: First lets make a function to check the url and return the correctly formatted url.

Animation Direction in CSS3

Submitted by alpha_luna on
What is animation-direction? The animation-direction property specifies whether or not the animation should play in reverse direction or in alternate cycles. If the animation-direction value is "alternate", the animation played as normal every odd time (1,3,5,etc...) and backwards every even time (2,3,6,etc...). Note: If the animation is set to play only once, this property will have no effect

Creating a Media Playlist using Widows Media Player in VB.NET

Submitted by donbermoy on
This tutorial will teach you on how to create a music playlist using windows media player in vb.net. So now I will be going to teach you how to do this. 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. Right click the ToolBox, and click the Choose Items. output 3.