Exemple #1
0
        public static void ComUnregisterFunction(Type type)
        {
            Contract.Requires(type != null);

            VvvRootKey.Unregister();
            ComUnregister(type, VvvRootKey.ProgId);
        }
Exemple #2
0
        public static void ComRegisterFunction(Type type)
        {
            Contract.Requires(type != null);

            VvvRootKey.Register();
            ComRegister(type, "VVV Sample ShellExtension (InfoTip)", VvvRootKey.ProgId);
        }
Exemple #3
0
        public static void ComUnregisterFunction(Type type)
        {
            Contract.Requires(type != null);

            VvvRootKey.Unregister();
            ComUnregister(type, "VVV ContextMenu (MMSF Sample)", VvvRootKey.ProgId);
        }
Exemple #4
0
        public static void ComRegisterFunction(Type type)
        {
            Contract.Requires(type != null);

            VvvRootKey.Register();
            ComRegister(type, registryDescription, VvvRootKey.ProgId);
        }
Exemple #5
0
 public static void ComUnregisterFunction(Type type)
 {
     VvvRootKey.Unregister();
     ComUnregister(type, "VVV ContextMenu (MMSF Sample)", VvvRootKey.ProgId);
 }
Exemple #6
0
 public static void ComUnregisterFunction(Type type)
 {
     VvvRootKey.Unregister();
     ComUnregister(type, VvvRootKey.ProgId);
 }
Exemple #7
0
 public static void ComRegisterFunction(Type type)
 {
     VvvRootKey.Register();
     ComRegister(type, "VVV Sample ShellExtension (InfoTip)", VvvRootKey.ProgId);
 }
Exemple #8
0
 public static void ComUnregisterFunction(Type type)
 {
     ComUnregister(type, registryDescription, VvvRootKey.ProgId);
     VvvRootKey.Unregister();
 }
Exemple #9
0
 public static void ComRegisterFunction(Type type)
 {
     VvvRootKey.Register();
     ComRegister(type, RegistryDescription, VvvRootKey.ProgId);
 }