Jump to content

C# [duvida]


Soneka

Recommended Posts

Se te disseram que para as horas era DateTime.Now.Hour.ToString() e para os minutos era DateTime.Now.Minute.ToString() para os segundos será.. vá.. DateTime.Now.Second.ToString().  😛

textBox1.Text = DateTime.Now.Hour.ToString() + ":" + DateTime.Now.Minute.ToString() + ":" + DateTime.Now.Second.ToString();

E o Interval no Tick deve estar para 1000 e não para 10000...

Link to comment
Share on other sites

Epá, não façam concatenação de Strings que isso é horrível, para além de ser terrivelmente ineficiente.

Neste caso usem

DateTime.Now.ToLongTimeString();

ou

DateTime.Now.ToString("T");

ou

DateTime.Now.ToString("HH:mm:ss");

"Give a man a fish and he will eat for a day; Teach a man to fish and he will eat for a lifetime. The moral? READ THE MANUAL !"

Sign on a computer system consultant's desk

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.