You are viewing this page out of context. To see it in the context it is intended please click here.
About This Page
Reply posted by J on Thu 9 Sep 2004 in response to Keeping the boss happy
Re: Agent Done? - Again
hi alli really got benefit from the code samples
but the thing i want to mention is that
we can work out for various columns rather than hardcoding them as i did
here's the code
Dim sess As New NotesSession
Dim db As NotesDatabase
Dim qs As NotesView
Set db = sess.CurrentDatabase
Set qs = db.GetView("Employee")
Forall c In qs.Columns
Print |<td width="80"><b>|+c.Title+|</td>|
End Forall
n then display their contents as already described
bye