Florin M.
Florin M.

Reputation: 2169

Lotus Notes: View selection from picklist

    picklist = w.Pickliststrings (3, 0, server_name, nfs_name, "vwaDoc", "Docs", "Select", 1, "")

    If Not Isarray(picklist) Then Exit Sub

    Set doc_new = db_colector.GetDocumentByUNID (Cstr (picklist (0)))

The above view is listing having the first column - categorized some docs. from different 2 forms.

I want after I press the OK button from the picklist to be able to get only a doc. from, let say, formA.

I was able to manage the following condition:

If doc_new.Form(0) = "fmB" Then 'form B => Not
            Msgbox "Bla bla bla, wrong document ", 32, "Atention"
            Goto et

Else

But what if the user is selecting the categorized section ( the first column, which has no form ) ?

I tried something like this:

If doc_new.Form(0) Is Nothing Then 
            Msgbox "no doc.", 32, "Atentie"
            Goto et
End if

I appreciate your time!

Upvotes: 0

Views: 819

Answers (1)

Mike
Mike

Reputation: 2559

Use

If doc_new Is Nothing then

which will show that a document has not been selecetd (and a category has)

Upvotes: 1

Related Questions