Ver Mensaje Individual
  #6 (permalink)  
Antiguo 02/06/2008, 08:56
Avatar de RootK
RootK
Moderador
 
Fecha de Ingreso: febrero-2002
Ubicación: México D.F
Mensajes: 8.004
Antigüedad: 23 años
Puntos: 50
Respuesta: De hexadecimal a formato fecha

ésto me funciona sin problemas

Cita:
Dim num As Int64 = Int64.Parse("000000010faaac03", System.Globalization.NumberStyles.HexNumber)
Dim dt As System.DateTime = System.DateTime.FromBinary(num)
MessageBox.Show(dt.ToShortDateString)
con cual versión del framework estás trabajando ?