In VFP 7, I have a combo box where:
boundcolumn = 2
columnlines = .F.
DisplayValue = Dealer
name = cboPayeeType
rowsource = Dealer,D,Manufacturer,M,Distributor,R
rowsourcetype = 1 - Value
I want Dealer/ D to be the default value but it is currently blank on the screen even though displayvalue contains "dealer". The cboPayeeType.value is 'D' when Dealer is selected, 'M' when Manufacturer is selected, etc.. (boundcolumn 2).
How do I make Dealer the default?
boundcolumn = 2
columnlines = .F.
DisplayValue = Dealer
name = cboPayeeType
rowsource = Dealer,D,Manufacturer,M,Distributor,R
rowsourcetype = 1 - Value
I want Dealer/ D to be the default value but it is currently blank on the screen even though displayvalue contains "dealer". The cboPayeeType.value is 'D' when Dealer is selected, 'M' when Manufacturer is selected, etc.. (boundcolumn 2).
How do I make Dealer the default?