Access Fields in Lotus Notes DB Forms

C

ChuckAT

I am able to access Lotus Notes information in a form using the following.
dim Doc as Object
dim Item as Object
dim NTabN as String
Set Doc = View.GETFIRSTDOCUMENT
If Doc.HASITEM("Tab_Name") Then
Set Item = Doc.GETFIRSTITEM("Tab_Name")
NTabN = Item.Text
Else
GoTo Field_Error
End If

I am struggling trying to update this field from my excel vba program.

I have tried to use:
Function REPLACEITEMVALUE(ITEMNAME As String, NEWVALUE) but keep geting
error of object required. stumped
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top