액세스(Access) DB 파일인 MDB를 델파이에서 수동으로 생성하는 함수입니다. {** MDB 파일을 생성한다. *} function CreateMDB(hwndOwner:HWND; const strFileName:string):integer; const ODBC_DLL ='ODBCCP32.DLL'; FUNC_NAME ='SQLConfigDataSource'; var strSystemDir:string; nSize:integer; hLib:THandle; fn:TSQLConfigDataSource; begin Result:=0; SetLength(strSystemDir, 1024); nSize:=GetSystemDirectory(@strSystemDir[1], 1024); if nSize=0 then ..