nedcomp hosting homepage

Producten en diensten
Dedicated servers
Datacenter informatie
Partners, resellers
Helpdesk informatie
Technische docs, tools
Support homepage
ASP componenten
Praktische ASP, ASP.NET
Visual route server
Whois (domein gegevens)
Software documentatie
Whitepapers
Zoeken
Nedcomp / algemeen

Zoeken
 

Copyright © Nedcomp Hosting
Telefoon nr :   +31 184 670111
Fax nummer :   +31 184 631384
E-mailadres :   info@nedcomp.nl
 

Visual Basic Scripting Edition  

Expected 'End'

You created a construct, but did not properly terminate it. The following table lists the VBScript constructs that must end with an End statement.

Construct Terminating Statement
Sub End Sub
Function End Function
If End If
Class End Class
With End With
Select End Select

To correct this error

  • Terminate a Sub procedure with an associated End Sub statement.
  • Terminate a Function procedure with an associated End Function statement.
  • Terminate an If statement with an associated End If statement.
  • Terminate a Class statement with an associated End Class statement.
  • Terminate a With statement with an associated End With statement.
  • Terminate a Select Statement with an associated End Select statement.

See Also

Sub Statement | Function Statement