-
I'm trying to run the sample applicatin WCDEMO but it runs into an error in webclass_start event which has one line of code in it:
Set Me.NextItem = Me.Template1
the error says "method or data member not found"
in the webclass designer the name of Template1 is spelled correctly, i don't know why this happens, anyone had problem with this as well?
-
Hi,
That's odd. My wcdemo start event simply says:
Code:
Private Sub WebClass_Start()
Set NextItem = Template1
End Sub
Take out the Me. and see if it works.
Al.
-
it works
yep,
I looked further and found examples with no "Me." in the start event. I removed the Me and it runs. Well, except for one other error when on a line saying:
Me.URLdata = Generic
I outcomented this line and got through allright.
Thanks for your response anyway