How crete folder which name is taken from field on form

I need create folder use LS when I press on button, folder name should be name taken from field (abc) on form.How can I do that.

I use below code, but it don’t work especially using field name, it is abc, how good crete relation to this field.

Sub Click(Source As Button)

Dim session As New NotesSession

Dim db As NotesDatabase

Set db = session.CurrentDatabase

Call db.EnableFolder(abc)

End Sub

Thanks.

Subject: PutInFolder method

Use NotesDocument.PutInFolder(). See Designer Help for information on this method.