Sunday, October 2, 2016

Easy Web TV Live Stream - Free Source

It is compatible with Visual Studio 2012/2015. Free Web TV gives you amazing example on how to generate your live stream over desktop application. For sure you can generate it with your web application too by using IPTVs that you can find on Internet. Free Desktop TV is a free VB.Net source code. It...

Sunday, September 18, 2016

How to: Easy Web App deployment with Microsoft Azure from Visual Studio 2015

It is not free, it is not big but most advantage, it does not hard to learn because it is a new thing. And this is Microsoft Azure, a cloud development environment from Microsoft. There are a lots of tools that you can choose to develop your project but here I want to show you how to deploy ASP.Net...

Friday, September 16, 2016

Remember user login with VB Net in Visual Studio - Video Tutorial

To make easy to your client activities, User login session is very important to save time and fast accessing for user. This is a tiny source code with video tutorial on how to set your user session in your VB.Net project. Requirement: Create a simple form Setup the setting variables  rememberMe...

Tuesday, September 13, 2016

VB Solution: Easy step to create a Digital Clock in Visual Studio 2012/2015

It is an easy way for newbie in Visual Studio and VB.Net to create a simple Digital Clock. You can find source code and full video example at the link below or you can follow easy steps:  Create a form and add  Label for time, Label for date Timer tool Import Imports System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock  Example Full Source Code: Imports System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock Public...

Sunday, September 11, 2016

Close all child forms in Parent in Visual Studio 2012 - 2015

In purpose of form controlling, close all child form is to manage current active form to topmost. This action will work when a lot of forms are already opened. This script is small but can be work as magic to help out your biggest project. Code Example:  Private Sub CloseAll()        ...

VB Beginner: How to open child form in parent form and activate if it already existed

This is how to control your form in Visual Studio. Actually, most of beginner programmers are very headache with working with forms and its interaction. Here is the great source code and tutorial on how to control forms. Example:  Private Sub btnChild1_Click(sender As Object, e As EventArgs) Handles btnChild1.Click        Dim myForm As New frmChild1       ...

Saturday, September 10, 2016

Create Barcode Generator with Visual Studio 2015

Barcode is used for recognizing an item because it can be reading from Barcode Scanner or Barcode Reader. This is a tiny script that can help you out how to create a barcode label to stick in your items. In this VB.Net script, you are not to worry about how to write the code because it is containing...