Forum Discussion
Ammar2400
Sep 17, 2022Copper Contributor
Multivalue Field
Hello I created an Access DB with a field that has multiple value lookup. I want to create a button that allows the user to SetProperty in VB for certain fields. It works fine for all fields bu...
arnel_gp
Sep 18, 2022Steel Contributor
you can try to use VBA to add code to the Click Event of the button:
private sub Btn1_Click()
Me!TextboxName = Array("A", "C")
end sub
private sub Btn1_Click()
Me!TextboxName = Array("A", "C")
end sub