JamesR
 Member
 Posts: 33
Joined: 1/7/2011
Location: Cotswolds, UK
User Profile |
Think I am talking to myself here - but I have found a 'cause' in my copied files
For some reason
Sub OnStartup
'statements
end sub
was missing the brackets after OnStartUp
If I correct that to
Sub OnStartUp()
'statements
end sub
Then all works fine...........
|