Hi all...i need your help regarding to change a new day and date after clock shown 00:00:00 AM......can anyone help me....i'm desprerated....tq

Recommended Answers

All 3 Replies

HI

Try using this

Date.Today
Date.Now.DayOfWeek

Mark as solved if it helps you!!!

Hi,

I'm a little confused about your question, so I think that you want to see the times running.

Here's an example how to do it. All you need is to add a timer.

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        TextBox1.Text = Now.ToString("G")
        Label1.Text = Format(Now, "hh:mm:ss tt")

    End Sub

Thank you.....awesome

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.