Please could someone help out. I'm reading 2 registry entry's and want to create 1 messagebox out of them. The only thing i could create is 2 messageboxes. How can i combine the entry's to 1 messagebox?
(this reads what windows version+ what service pack)
This is what i have:
Code:-- Read the values. registry_value = Registry.GetValue(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", "ProductName", true); registry_value2 = Registry.GetValue(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", "CSDVersion", true); -- Display the value read from the Registry in a dialog. Dialog.Message("Registry Data", "Uw systeem heeft "..registry_value.."."); Dialog.Message("Registry Data", "En "..registry_value2..".");

