Showing posts with label Source Codes. Show all posts
Showing posts with label Source Codes. Show all posts

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 is simple, easy understanding but it works very wonderful.


Requirement:
  1. Shockwave Flash enabled
  2. VLC Plugin (Recommended)
License: All TVs streams in this public example are based in Cambodia. It would be under copyright protection but you can use it for only studying purpose.

Activate:You may need activation passcode to run full example of Free Desktop TV. Click this link for free activation code: http://www.sam4bee.com/p/free.html

Notice: This source code is working full functionally in Visual Studio 2012. This application runs only if Visual Studio 2012 or 2015 is installed.

Download Source: https://drive.google.com/open?id=0Bx_Ou3p2c8Tea3FnUXptQ2JoY1U

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:
  1.  Create a form and add 
    • Label for time, Label for date
    • Timer tool
  2. Import
    • Imports System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock 
Example Full Source Code:
Imports System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock
Public Class digitalclock

    Private Sub digitalclock_Load(sender As Object, e As EventArgs) Handles MyBase.Load
        lbTime.Text = TimeOfDay
        lbDate.Text = Date.Today.ToString("dd MMM, yyyy")
    End Sub

    Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
        lbTime.Text = TimeOfDay
    End Sub
End Class

Download source code for free: Digital Clock 
Note: This script is working fine with Visual Studio 2012 and above.

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()
        For Each aform As Form In Me.MdiChildren
            aform.Close()
            'aform.Dispose()
        Next
    End Sub



Download Source for free: Close All Active Form
Notice: This script is working find in Visual Studio 2012 or above

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
        Try
            If Application.OpenForms.OfType(Of frmChild1).Any Then
                Application.OpenForms.Item("frmChild1").Activate()
            Else
                myForm.MdiParent = Me
                myForm.TopMost = True
                'myForm.WindowState = FormWindowState.Maximized
                myForm.Show()
            End If
        Catch ex As Exception
            MessageBox.Show(ex.Message, "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning)
        End Try
    End Sub



Download source code for free: Children Form Control
Notice: This script is working find with Visual Studio 2012/2015 and later

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 the Barcode Generator script as a plugin in packed.


Download for free: Barcode Generator Script
Notice: This script is working with Visual Studio 2012/2015 and later.

Create Youtube player with Visual Studio 2012/2015

Youtube is one of the biggest video social in the world. Thousand of videos are uploaded very days which make you hard to find out if you don't yet subscribe to any channels. So, here is a tiny Visual Studio script that can help you to keep your favorite videos in your hand. This script is just for developer and for beginner in VB.Net. You can start from here to build your VB professional in the future.

Download for free: Youtube Favorite Videos
Notice: This script is working with IE11 emulator and Adobe Flash Player.

Create a webcam picture tool in Visual Studio 2012/2015

A Webcam picture is used for any purpose such as in building of camera security systems, social networking, and product inventory management. Webcam Picture Tools is a tiny script but it stands a a bigger ability for your development. 


Download for free: Webcam Picture
Notice: This code might not work properly in Virtual Windows such as VMWare.