AndrewMozley
Programmer
I have a table of product codes (ordered by field Prod) and have placed a drop-down combo on a form so that the user can key in a partial key, so that when he opens up the combo he can select from the range of products beginning with that partial key. The properties of the combo are :
Style =0; Rowsource Type = 6 (Fields); Rowsource = “Product.Prod,Description”; Format = “!”
I have SET EXACT OFF
If I key in a full product code, say “P12” into the combo and open it up, the drop-down does indeed show a list of products P12, P33, P304 . . If however I key in a partial code “P”, then I am given the list of products starting at the first product, B01.
In this second case I would like the list to show P01, P02, P09 &c, so starting at the next product after the “P” that I have entered. How do I do that?
A second matter is that the drop-down shown does indeed show the product and description, but the dividing vertical bar shows as a jagged line. Can I get this to be a straight vertical line while still using a proportional font (Arial)?
Thanks. Andrew
Style =0; Rowsource Type = 6 (Fields); Rowsource = “Product.Prod,Description”; Format = “!”
I have SET EXACT OFF
If I key in a full product code, say “P12” into the combo and open it up, the drop-down does indeed show a list of products P12, P33, P304 . . If however I key in a partial code “P”, then I am given the list of products starting at the first product, B01.
In this second case I would like the list to show P01, P02, P09 &c, so starting at the next product after the “P” that I have entered. How do I do that?
A second matter is that the drop-down shown does indeed show the product and description, but the dividing vertical bar shows as a jagged line. Can I get this to be a straight vertical line while still using a proportional font (Arial)?
Thanks. Andrew