How to add the table records to combo-box drop down dynamically..

sanjeevisubhash

New Member
if we have one table name products and we have 5 products in that

products ----> table
productid & productname ---> fields in that

productid productname

1 laptop
2 mouse
3 keyboard
4 cpu
5 webcam

if i create a combo-box and i could not able to get these product names in that combo box..dynamically..if i increase the products also that products should be display in the combo - box
 

RealHeavyDude

Well-Known Member
You don't talk about the Progress/OpenEdge version you are using ...

A combo-box widget is not refreshed automatically when the data source ( a database table or whatever ) changes. You must do this manually and you need to think about how you want to trigger it. Using a combo-box widget to display data which comes from a database table which changes often is, IMHO of course, not a good idea.

Heavy Regards, RealHeavyDude.
 
Top