   /* Open the Driver table */
EBPtr->hTable = DB_OpenTable (hSession, "Driver");
if (!EBPtr->hTable)
   {
   P3_WinClose (hWndAddDriver);
   return 0;
   };
   
   /* Attach each edit box to its associated table column */
if (!DB_EditAttach (hSession, EBPtr->hTable, "DriverId", 
		      hWndAddDriver_DEDriverId))
   return 0;

if (!DB_EditAttach (hSession, EBPtr->hTable, "Surname", 
		      hWndAddDriver_DESurname))
   return 0;

if (!DB_EditAttach (hSession, EBPtr->hTable, "Salary", 
		      hWndAddDriver_DESalary))
   return 0;

if (!DB_EditAttach (hSession, EBPtr->hTable, "Birth", 
		      hWndAddDriver_DEBirth))
   return 0;

