I am working on a WinForm Application using Visual Studio 2008 (.Net 3.5) and I want to create and access a key on registry in this path : [HKEY_LOCAL_MACHINE\SOFTWARE\MyCompany\MyApplication] :
Dim reg As RegistryKey reg = Registry.LocalMachine.CreateSubKey("SOFTWARE\MyCompany\MyApplication") reg.SetValue("MyKey", "Somthing")
and also I have tow instance of MSDE, Default Instance and MyPC\SQL2000, and I want to connect to named Instance of MSDE (MyPC\SQL2000) :
Dim conn As New SqlConnection conn.ConnectionString = "Data Source=MyPC\SQL2000;Integrated Security=True;" conn.Open()
Scenario 1 - The target machin is Windows 32Bit (XP,Vista,7,...) ,MyApplication is Compiled as AnyCPU or X86 : In this case I have no problem.
Scenario 2 - The target machin is Windows 64Bit (XP,Vista,7,...) ,MyApplication is Compiled as AnyCPU or X64 : reg is working correctly and i can create ,read or change value of keys, but conn can not be open and throws an Exception.
Scenario 3 - The target machin is Windows 64Bit (XP,Vista,7,...) ,MyApplication is Compiled as X86 : conn properly opens, but reg returns Nothing and throw an Exception when SetValue is called.
I am so confused, What should I do in MyApplication to work properly in Windows 64Bit ???