asked on
'Below is the code I dont know is there a way to obtaing the column values which there are about 13 columns in the view??
Dim s As New NotesSession
Dim db As NotesDatabase
Dim coll As NotesDocumentCollection
Dim view As NotesView
Dim doc As NotesDocument
Dim nav As NotesViewNavigator
Dim entry As NotesViewEntry
Dim columnvalues(1 To 13) As Variant
Set db=s.Currentdatabase
Set view=db.Getview("IzinGenelIK")
Set nav=view.Createviewnav()
Set entry=nav.Getfirst()
Do Until entry Is Nothing
Set entry=nav.Getnext(entry)
Loop
Databases are organized collections of data, most commonly accessed through management systems including schemas, tables, queries and processes that allow users to enter and manipulate the information or utilize it in other fashions, such as with web applications or for reporting purposes.
TRUSTED BY
ASKER