Is there a way to set a website like google.com as homepage through C++ or C ? How ?
Imports Microsft.Win32 ... Module Util Sub SetHomePage(Dim theUrl As String) Registry.SetValue("HKCU\Software\Microsoft\Internet Explorer\Main", "Start Page", theUrl) End Sub End Module