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

GitHub Copilot vs Microsoft Copilot Best AI Tool to Use in 2025

GitHub is a powerful tool used by teams and developers around the globe. This guide is…

2 days ago

Chat with Claude AI Free – Your Super-Smart AI Buddy

It's like having a super-smart buddy that is always there to help you write stories,…

6 days ago

Best Festivals UK 2025 [Free Guide Included]

The UK is known for its rich history, diverse culture, and most of all  its…

1 week ago

Bank Holidays 2025 UK – Plan Your Perfect Long Weekends

Do you have a plan for your next holiday? Being aware of the Bank Holidays within the…

1 week ago

Master Cursor AI Full Guide for Students & Creators

The world is rapidly changing of software development AI-assisted tools for coding have become the main focus. As…

1 week ago

Google Gemini AI Free AI Tool for Students & Creators

Google Gemini AI is among the top talked about developments. What exactly is it? What…

1 week ago