Can i place in particular field, all fieldnames of other form?
If in a field in selection formula insert @DbColumn, when it shows me all values of one field.
Is there any way i can use formula to show names of all fields?
Same way as it realised in search - when you press button “Field” and add search conditions, in the field “Field” listed all fieldnames. Is there any way i can do this?
If Isempty(form.Fields) Then
Messagebox form.Name & " has no fields"
Else
fieldCount = 0
msgString = ""
Forall field In form.Fields
fieldCount = fieldCount + 1
msgString = msgString & Chr(10) & _
" " & field
End Forall
Messagebox form.Name & " has " & _
fieldCount & _
" field(s):" & Chr(10) & msgString
End If
Exit Sub
End If
End Forall
Messagebox “The form “”” & formNameIn & “”" does not exist"