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

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

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

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

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