Write a Dword, Decimal value to 64 bits

0
Private Sub Button6_Click(sender As Object, e As EventArgs) Handles Button6.Click
    Dim Numero = 22i
    My.Computer.Registry.SetValue("HKEY_CURRENT_USER\Software\MinhaChaveCriada",
   "DECIMAL 64 Bits", Numero, Microsoft.Win32.RegistryValueKind.DWord)
End Sub

When I use Dim Numero = 22i does% integer of the% represent a value for 32 bits as I write to 64 bits? I already took i and it continues to write in 32 bits. I already solved it can delete.

    
asked by anonymous 20.09.2014 / 15:30

1 answer

1

It was like this at the end.  Dim Number = 22         My.Computer.Registry.SetValue ("HKEY_CURRENT_USER \ Software \ MyChaveCriada",        "DECIMAL 64 Bits Qword", Numero, Microsoft.Win32.RegistryValueKind.QWord)

I have already asked to remove the post, nobody has removed yet ...

    
21.09.2014 / 23:44