NinethSense oWnZ mE!: Praveen’s drawing book

Choose a Topic:

Wed
20
Jun '07

Microsoft SQL Server 2008 CTP is out!




Your Data, Any Place, Any Time

SQL Server 2008, the next release of Microsoft SQL Server, provides a comprehensive data platform that is more secure, reliable, manageable and scalable for your mission critical applications, while enabling developers to create new applications that can store and consume any type of data on any device, and enabling all your users to make informed decisions with relevant insights.


Check this for more details: http://www.microsoft.com/sql/prodinfo/futureversion/default.mspx
'

Get list of installed softwares with Managed C++

The below code is for listing installed softwares in a windows machine with Managed C++.


 RegistryKey^ rk = RegistryKey::OpenRemoteBaseKey(RegistryHive::LocalMachine, System::Environment::MachineName);
				 RegistryKey^ rkprograms = rk->OpenSubKey(“Software\Microsoft\Windows\CurrentVersion\Uninstall”,RegistryKeyPermissionCheck::ReadSubTree,System::Security::AccessControl::RegistryRights::FullControl);
 
					 array<string ^,1>^ rksubkeynames = rkprograms->GetSubKeyNames();
				 for (int i=0;i<rksubkeynames ->Length;i++) {
					 Object ^app = rkprograms->OpenSubKey(rksubkeynames[i])->GetValue(“DisplayName”);
					 if (app) {
						listBox1->Items->Add(app);
					 }
				 }</rksubkeynames></string>
The CodeProject Microsoft Developer Network Official ASP.NET Forums Microsoft .NET Framework Community Microsoft Most Valuable Professional Kidoos forums Microsoft Visual Studio Developer Home Professional Information Technology Solutions Microsoft Research Home Kerala Microsoft Users Group Community Website