0
我需要幫助,我需要知道如何獲取表單字段的值 我知道如何獲取字段名稱,但不知道其中的值。 .. 這裏是我的代碼的樹幹版本: 順便說一下,循環現在沒有任何意義,但它會正確使用,一旦我找到了如何獲得字段值,... 謝謝大家!獲取Lotus Notes表單中字段的值
Forall field In form.Fields
fieldCount = fieldCount + 1
msgString = msgString & Chr(10) & " " & field
If (field Like "*Act*") Then
ActfieldCount = ActfieldCount + 1
If (field Like "RNomAct1") Then
Msgbox("RNomAct1 found in SourceString!")
'thoses do not work
' test = field.GetItemValue("RNomAct1")
' test = field.FieldGetText("RNomAct1")
' Messagebox(test(0))
End If
Else
Msgbox("Could not find the SearchString.")
End If
End Forall
感謝的我有一些搜索得到它太,我真的是Lotus Notes中的新成員(並且與Documents UIDoc的概念非常混淆......) –