Sign up on the Revelation Software website to have access to the most current content, and to be able to ask questions and get answers from the Revelation community

Notes Classes (ViP Specific)

At 26 NOV 1997 07:29:29AM KR, MMT Computing wrote:

I written some code to create OLE notessession objects, managed to get the database, view, and that's as far as I get. When I try to read/write values back to the doc I can't. I've not seen any decent examples of this done, so I would appreciate any guidance you can give.

Dim session, view, database,doc as variant

session=CreateObject("Notes.NotesSession")

database=session.GetDatabase("","c:\notes\data\mydb.nsf")

view=database.getview("Functions")

doc=view.getfirstdocument

for i=1 to 10

  statys%=view.getnextdocument(doc);
  print doc.subject(0)

next

Thanks Again

View this thread on the forum...