	   (* Open the Driver table *)
	 hDriverTable = DB_OpenTable (hUser, 'Driver') ;
	IF hDriverTable = 0 THEN
	   BEGIN
	    P3_WinClose (hWndAddDriver) ;
	   Exit;
	   END;
   
	   (* Attach each edit box to its associated table 
		column *)
	IF  DB_EditAttach (hUser, hDriverTable, 
		'DriverID', hWndAddDriver_DEDriverID)  = FALSE THEN
	   Exit;
	IF  DB_EditAttach (hUser, hDriverTable, 
		'Lastname', hWndAddDriver_DELastname)  = FALSE THEN
	   Exit;
	 IF  DB_EditAttach (hUser, hDriverTable,
		'Salary', hWndAddDriver_DESalary)  = FALSE THEN
	   Exit;
	IF  DB_EditAttach (hUser, hDriverTable, 
		'Birth', hWndAddDriver_DEBirth)  = FALSE THEN
	   Exit;
