I'm building a procedure that fills out a word form based on a form in Access. I used this guide ( to do it, and it works perfectly for text but not for selection boxes.
Here's an example of the code I use:
With doc
.FormFields("fldNaam").Result = Nz(Me!Naam)
.FormFields("fldIncidentReport").Result = Nz(Me!IncidentReport)
.FormFields("fldBusinessConsequen").Result = Nz(Me!BusinessConsequenties)
The second field, "fldIncidentReport" is a selectionbox. What is the command for marking this box?
Here's an example of the code I use:
With doc
.FormFields("fldNaam").Result = Nz(Me!Naam)
.FormFields("fldIncidentReport").Result = Nz(Me!IncidentReport)
.FormFields("fldBusinessConsequen").Result = Nz(Me!BusinessConsequenties)
The second field, "fldIncidentReport" is a selectionbox. What is the command for marking this box?