V Vlada Milicevic May 10, 2004 #2 Hi! How I can set ComboBox like DBLookUpComboBox in Delphi ? Plese help me Thank's
V vlada May 10, 2004 #3 What exactly does a DBLookUpComboBox in Delphi do? Click to expand... I have two tables, Costomers and Oreders CustomersId is Key Customers 1:m Orders ComboBox shoul display OredersDate or other field in Orders table per CustomersId in Customers table ! Please any example ? Thanks
What exactly does a DBLookUpComboBox in Delphi do? Click to expand... I have two tables, Costomers and Oreders CustomersId is Key Customers 1:m Orders ComboBox shoul display OredersDate or other field in Orders table per CustomersId in Customers table ! Please any example ? Thanks
C carlo May 13, 2004 #4 Dear Sir, Combobox.datasource= your dataset combobox.displaymember= some column to display combobox.valuemember = some column to act -> id For example Table client ClientID ClientName Table Ordere OrderID ClientID on the form textbox orderid comboboxclient comboboxclient.datasource= datasetclientorders comboboxclient.displaymember=datasetclientorders.client.clientName comboboxclient.valuemember=datasetclientorders.client.clientID Hope this helps... Kind regards, Carlo
Dear Sir, Combobox.datasource= your dataset combobox.displaymember= some column to display combobox.valuemember = some column to act -> id For example Table client ClientID ClientName Table Ordere OrderID ClientID on the form textbox orderid comboboxclient comboboxclient.datasource= datasetclientorders comboboxclient.displaymember=datasetclientorders.client.clientName comboboxclient.valuemember=datasetclientorders.client.clientID Hope this helps... Kind regards, Carlo