home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 February
/
CHIP_2_98.iso
/
software
/
pelne
/
optionp
/
iis4_07.cab
/
CPPComp.bas
< prev
next >
Wrap
BASIC Source File
|
1997-11-01
|
681b
|
21 lines
Attribute VB_Name = "CPPComp"
Public Sub InstallCOMComponents(strPath As String)
On Error Resume Next
Dim varRetVal
' Append a '\' to the path if it's missing
If Right$(strPath, 1) <> "\" Then strPath = strPath & "\"
varRetVal = Shell("regsvr32 /s " & strPath & "PermChk.dll", vbMinimizedNoFocus)
varRetVal = Shell("regsvr32 /s " & strPath & "ProdInfo.dll", vbMinimizedNoFocus)
End Sub
Public Sub UninstallCOMComponents()
On Error Resume Next
Dim varRetVal
varRetVal = Shell("regsvr32 /u /s PermChk.dll", vbMinimizedNoFocus)
varRetVal = Shell("regsvr32 /u /s ProdInfo.dll", vbMinimizedNoFocus)
End Sub