Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@sAbakumoff
Created April 10, 2013 02:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sAbakumoff/5351370 to your computer and use it in GitHub Desktop.
Save sAbakumoff/5351370 to your computer and use it in GitHub Desktop.
private void DisableChartWizard()
{
var regSubkey = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(@"SOFTWARE\GrapeCity\ActiveReports 6\Windows");
if (regSubkey!=null)
{
regSubkey.SetValue("AutoRunWizard", 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment