Insira um Textbox e CommandButton.
Coloque o código abaixo no evento do CommandButton
Private Sub Command1_Click()
Shell "C:windowssystemRegsvr32.exe " & Text1.Text, vbNormalFocus
End Sub
Para cancelar o registro use o comando abaixo
Private Sub Command1_Click()
Shell "C:windowssystemRegsvr32.exe " & Text1.Text & " /u", vbNormalFocus
End Sub
T+
Rinaldo