|
|
|
|
|
Dicas
|
|
Visual Basic (ActiveX/Controles/DLL)
|
|
|
Título da Dica: Registe as Suas DLL's e OCX'x da Maneira Mais Simples
|
|
|
|
Postada em 27/9/2004 por Brexuega
Para começar crie um ficheiro de texto com o nome Registo. Coloque lá o seguinte: --------------------------------------------------------------------------------------------------- REGEDIT4
[HKEY_CLASSES_ROOT.dll] @="dllfile" [HKEY_CLASSES_ROOT.ocx] @="dllfile" [HKEY_CLASSES_ROOTdllfileshellRegistrar DLLcommand] @="regsvr32 "%L"" [HKEY_CLASSES_ROOTdllfileshellDesregistrar DLLcommand] @="regsvr32 /u "%L""
[HKEY_CLASSES_ROOT.exe] @="exefile" [HKEY_CLASSES_ROOTexefileshellRegistrar EXEcommand] @=""%L" /regserver" [HKEY_CLASSES_ROOTexefileshellDesregistrar EXEcommand] @=""%L" /unregserver" ---------------------------------------------------------------------------------------------------
Guarde o ficheiro. Agora renomeie o ficheiro Registo.txt para Registo.reg. Faça duplo clique sobre o ficheiro, responde SIM na mensagem que será apresentada, e pronto tá feito. Agora é só clicar com o botão Direito do Rato sobre a DLL ou o OCX e escolher a opção Registar ou Desresistar DLL/OCX.
|
|
|
|
|