newtofoxpro
Programmer
I am looking for Control which manage Fixed Options to select by user. I found ComboBox is nearly do the job.
Example 1. " Do you want to continue... Yes,No"
Example 2. Debit,Credit followed by Amount.
Example 3. ReportType = Compact,Detail,Summary
I used ComboBox with
this.RowSourceType = 1
this.RowSource = "Debit,Credit"
this.Style = 2
Example 3. Experienced User knows this option, when user wants ReportType Compact user press <C> and <Enter> I want ComboBox should select Compact and move to next control without opening list.
Novice user may not knows so he would enter <X> then ComboBox should open the list to select options.
Please advice any other control to do this job.
Example 1. " Do you want to continue... Yes,No"
Example 2. Debit,Credit followed by Amount.
Example 3. ReportType = Compact,Detail,Summary
I used ComboBox with
this.RowSourceType = 1
this.RowSource = "Debit,Credit"
this.Style = 2
Example 3. Experienced User knows this option, when user wants ReportType Compact user press <C> and <Enter> I want ComboBox should select Compact and move to next control without opening list.
Novice user may not knows so he would enter <X> then ComboBox should open the list to select options.
Please advice any other control to do this job.