Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ActiveX does not support this property or method

Status
Not open for further replies.

Cenedra

Programmer
Jan 2, 2003
114
US
I am getting this message:

Object doesn't support this property or method: 'doUpdate'

and in my object my doUpdate Function is Public, and created as such:

Public Function doUpdate(sPath As String, nSiteID As Long, iBillItem As Integer, sServerName As String) As String

Call doUpdate_(sPath, nSiteID, iBillItem, sServerName)

End Function


All users have the rights to use all of the components, and my fuction is public, and two peers have looked at this code, perplexed.

Can anyone help me?
 
why did you put an "_" after funciton name?

Call doUpdate_(sPath, nSiteID, iBillItem, sServerName)
try removing
 
If I called doUpdate inside doUpdate, that's make the program barf, no?

doUpdate_ is another Sub, but is private.
 
like sindhufire said remove the "_"

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top