Free Projects

Internet Cafe Management System Using VB.Net

Internet Cafe Management System is used to manage the time usage of the System.when the person sit on the machine. started to browsing the internet Internet Cafe Management System is On it is calculating the time and the amount.

Form Load

Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load

        Timer1.Interval = 1000
        Timer1.Enabled = True
        StartTime = Now
        sw.Start()

    End Sub

Drag the timer control from the toolbox and double click and write the following code

Timer

Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick

        TextBox2.Text = sw.Elapsed.ToString("hh\:mm\:ss")
        If DateDiff(DateInterval.Minute, StartTime, Now) >= 1 Then
            CumlativeValue += 50
            Label3.Text = CumlativeValue.ToString
            StartTime = Now
        End If

        TextBox1.Text = Now.ToString("h:mm:ss tt")

    End Sub

End Button

 Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
        sw.Stop()
        Timer1.Enabled = False


    End Sub

i have attached the video link below. which will do this tutorials step by step.

 

admin

Recent Posts

Flexbox: Build Responsive Navigation Bar with HTML & CSS

Introduction to Flexbox When it comes to building responsive layouts, Flexbox offers a powerful and…

3 weeks ago

Creating Stunning Image Gallery Using CSS Grid

Introduction to CSS Grid The CSS Grid Layout is a powerful tool for creating responsive…

3 weeks ago

Create Professional Login & Registration Form using HTML & CSS

In this tutorils we are going to teach how to make a attractive Login &…

1 month ago

Form Repeater using HTML CSS JQuery

In this tutorial we are going to teach Form Repeater using HTML CSS JQuery.step by…

2 months ago

AJAX CRUD Application in Laravel 11

Introduction to AJAX and Laravel 11 AJAX, which stands for Asynchronous JavaScript and XML which…

2 months ago

C#.net Banking Project: Accurate FD Rate Calculation Tutorial

Introduction to FD Rate Calculation In any banking project, accurately calculating Fixed Deposit (FD) rates…

2 months ago