estranged
estranged

Reputation: 432

Few LotusScript errors

I am writing agent in LotusScript in Lotus Domino Designer and I get errors in these lines:

Dim session As New LCSession 

Class or Type name not found: LCSESSION.

 Dim conn As New LCConnection("db2") 

Class or Type name not found: LCCONNECTION. Then:

 conn.password = "db2admin" 

Variable not declared: PASSWORD.

And many similar lines. Where can be the problem, because I am trying to reuse existing code, and I am pretty sure it should work.

Thanks for help.

Upvotes: 1

Views: 494

Answers (1)

Per Henrik Lausten
Per Henrik Lausten

Reputation: 21709

You need to tell Lotusscript to to load the LotusScript Extensions for Lotus Connectors. So add the following to the (Options) section:

Uselsx "*lsxlc"

See the online Domino Designer help for more information.

Upvotes: 4

Related Questions