|
|
|
|
|
| | |
|
vbscript active server pages ASP vbscript SQL database informix oracle SQL Server Perl CGI Delphi PHP source code code sample samples program CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: detecting office web components on the client |
From: |
Chris Williams |
Date: |
1/11/2001 1:42:42 PM |
IP: |
208.163.94.4 |
Should be easy...
Just do something like this... except try to create whatever office component you are using..
If you get the error it's not installed and you can handle it however you want.
Here's an example of how to see if Softartisans email component is available or not
On Error Resume Next
Set objSMTPMail = Server.CreateObject("SoftArtisans.SMTPMail")
If Err.Number <> 0 Then
Response.Write("<B>Not Installed</B> ")
Else
Response.Write("Version: " &objSMTPMail.Version & " Installed ")
End If |
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|