You can do this with the standard VB combo box. The simplest way is to add a Data control to the form (setting its DatabaseName & RecordSource properties to point to your Access DB & Table), then set the DataSource property of the Combo to the name of the Data control. This will bind the Combo to the Access table, automatically populating it.
Many other VB controls (including the DataGrid) can be data-bound in this manner.
This method is simple, but not flexible. I prefer to write ADO-based methods for populating controls like combos.
If you're asking for technical help, please be sure to include all your system info, including operating system, model number, and any other specifics related to the problem. Also please exercise your best judgment when posting in the forums--revealing personal information such as your e-mail address, telephone number, and address is not recommended.
Access like table in VB6
Is there any way to do this with the DataGrid or is there a thrid party control that will let me do this in VB6?