A
azu_daioh
In VB, how do i open a form based on the field name?
In [DataEntry] form, i would like to be able to double click on the
fields to open the [Field Description]
For example if I double-click on the form name [license#], i would
like th open the form [Field Description] and go to the record for
[license#]
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Field Description"
stLinkCriteria = Me!FieldName
DoCmd.OpenForm stDocName, , , "fldName = stLinkCriteria"
I dont know how to use the fieldName property.
Thank you,
Sharon
In [DataEntry] form, i would like to be able to double click on the
fields to open the [Field Description]
For example if I double-click on the form name [license#], i would
like th open the form [Field Description] and go to the record for
[license#]
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Field Description"
stLinkCriteria = Me!FieldName
DoCmd.OpenForm stDocName, , , "fldName = stLinkCriteria"
I dont know how to use the fieldName property.
Thank you,
Sharon