Invalid address when trying to use an email in Notes 6

G’day

I have installed Notes 6 Client on my PC for testing purposes.

I still have notes 5 installed and working correctly.

All works well in notes 6 however when i compose a new email and try to add an email address from my personal address book i receive an Error:

The selected entry does not have a valid address

I am using the names.nsf file form my older installation and do not have the problem in Notes 5.

Any ides as to why this is happening ?

Thank you

Subject: Invalid address when trying to use an email in Notes 6

I have the same problem. Does any one have any idea why this is happening? If I open the entry and click on Save and Close button, this entry is fixed. Trying to create an agent using @Command([ToolsRefreshSelectedDocs]) but does not work.

E

Subject: RE: Invalid address when trying to use an email in Notes 6

I developed a button. It works well for me (on Windows machine).

Please try it.

Sub Click(Source As Button)

Dim db As New NotesDatabase("","names.nsf")

Dim collection As NotesDocumentCollection

Dim doc As NotesDocument

Set collection=db.AllDocuments

Dim x As Variant

For i = 1 To collection.Count

	Set doc = collection.GetNthDocument( i )

	x=doc.getitemvalue("form")

	If x(0)="Person" Then

		Set item = doc.GetFirstItem("FirstName")

		strFirstName = item.Text

		Set item = doc.GetFirstItem("LastName")

		strLastName = item.Text

		Call doc.replaceitemvalue("FullName",strFirstName + " " + strlastName)

		Call doc.save(True,True)

	End If

Next

End Sub