thanks for your help
"Damon Heron" wrote:
[Quoted Text] > This is a form bound to the table, correct? > First, set the option group visible property to no. > in the form's current event : > > Private Sub Form_Current() > If Me.Textbox >0 Then 'Textbox bound to field > Me.optgrp1.Visible = True > Else > Me.optgrp1.Visible = False > End If > End Sub > > Substituting your textbox name and option group name, of course. > > Damon > > > "jnewl" <jnewl[ at ]discussions.microsoft.com> wrote in message > news:CBB1A788-C5EE-4949-904E-71D60E1FDF3F[ at ]microsoft.com... > > developing an application for our call center. > > i want an option group to display only when a field in the table is > > greater > > than zero. > > > > how do i code that? can build option groups with no problem, but can not > > determine how to display based on other conditions. > > > > thanks for your help > > >
|