how to access textfield value in lotus script for Domino designer
问题 I am new to Domino designer and lotus script, I tried to access my text field by: Sub Click(Source As Button) Dim myText As String myText = Inputbox("insert some text :","Testing Heading","Default value test",100,100) Msgbox "you have entered : "+myText [myfield].text = myText //error End Sub but it shows an error: named product field does not exist Googled for it but can't find the solution. One more, searched for tutorials for creating forms,views,database in domino designer for beginners.