Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 DEV-Group
 DEV Bug Reports (Open)
 Small code change in IsObjInstalled function
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

Image
Average Member

Canada
574 Posts

Posted - 24 September 2006 :  17:28:40  Show Profile  Visit Image's Homepage  Send Image an ICQ Message
testemailcomponent.asp

Function IsObjInstalled(strClassString)
	on error resume next
	' initialize default values
	IsObjInstalled = False
	Err = 0
	' testing code
	Dim xTestObj
	Set xTestObj = Server.CreateObject(strClassString)
	If 0 = Err Then IsObjInstalled = True
	' cleanup
	Set xTestObj = Nothing
	Err = 0
	on error goto 0
End Function



maybe should be like the admin_config_email.asp OR NOT

function IsObjInstalled(strClassString)
	on error resume next
	'## initialize default values
	IsObjInstalled = false
	Err.Clear
	'## testing code
	dim xTestObj
	set xTestObj = Server.CreateObject(strClassString)
	if Err.Number = 0 then
		IsObjInstalled = true
	end if
	'## cleanup
	set xTestObj = nothing
	Err.Clear
	on error goto 0
end function



<

Edited by - Davio on 26 September 2006 05:50:51

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 24 September 2006 :  21:18:44  Show Profile
I am going to guess there isn't a problem with the code, but you just want the code to match, right?<

Support Snitz Forums
Go to Top of Page

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 26 September 2006 :  06:09:27  Show Profile
Function updated in testemailcomponent.asp file for version 3.4.07.<

Support Snitz Forums

Edited by - Davio on 06 January 2008 15:02:36
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.17 seconds. Powered By: Snitz Forums 2000 Version 3.4.07