Compartilhar via


Como: Armazenar valores de data e hora em uma variável (Visual Basic)

A variable holds date and time values if you declare it to be of data type Date.

A variable of the Tipo de dados Data (Visual Basic) can hold date values ranging from January 1 of the year 0001 through December 31 of the year 9999, and time values from 12:00:00 AM (midnight) through 11:59:59 PM.

The Date data type always holds both a date value and a time value. If you do not assign a time value to a Date variable, it defaults to the start of the day, that is, midnight. Se você não atribuir um valor de data para uma Date variável, ele assume o padrão para 1º de janeiro de 0001.

To hold dates in a variable

  1. Declare the variable with a Instrução Dim (Visual Basic).

  2. Follow the variable name with an As clause.

  3. Follow the As keyword with the Date keyword.

Consulte também

Referência

Resumo de tipo de dados (Visual Basic)

Tipo de dados único (Visual Basic)

Tipo de dados Data (Visual Basic)

Conceitos

Tipos de dados no Visual Basic

Caracteres de tipo (Visual Basic)

Outros recursos

Tipos de dados elementares (Visual Basic)