S shaw Aug 16, 2003 #1 Does anyone know how to bind ToggleButtons/OptionButtons to an OptionGroup using VBA in Access? Thank you, Shaw
Does anyone know how to bind ToggleButtons/OptionButtons to an OptionGroup using VBA in Access? Thank you, Shaw
D Dirk Goldgar Aug 16, 2003 #2 shaw said: Does anyone know how to bind ToggleButtons/OptionButtons to an OptionGroup using VBA in Access? Click to expand... I haven't ever done it except in testing just now, but you specify the option frame as the toggle button's parent when you create the control using CreateControl. For example, CreateControl "Form1", acToggleButton, acDetail, "Frame0", _ "", 1440, 720, 720, 720 See the help entry on CreateControl for details.
shaw said: Does anyone know how to bind ToggleButtons/OptionButtons to an OptionGroup using VBA in Access? Click to expand... I haven't ever done it except in testing just now, but you specify the option frame as the toggle button's parent when you create the control using CreateControl. For example, CreateControl "Form1", acToggleButton, acDetail, "Frame0", _ "", 1440, 720, 720, 720 See the help entry on CreateControl for details.