home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 July / PCWorld_2001-07_cd.bin / Software / Komercni / software602 / cnv_ifp.exe / I_IMPEXP_PREZ.PGM < prev    next >
Text File  |  2001-02-14  |  858b  |  32 lines

  1. {$$3249892600 .                              }include
  2.  
  3. var
  4.   impexp_prez_dir : string[255];
  5.   impexp_prez_app : string[31];
  6.  
  7. procedure Impexp_prez_entry;
  8. begin
  9.   Exp_entry.OPEN(nil);
  10. end;
  11.  
  12. procedure Impexp_prez_seldir;
  13. var
  14.   dirname : string[255];
  15. begin
  16.   dirname := Exp_entry.IMPEXP_PREZ_DIR.TEXT;
  17.   if Select_directory(Exp_entry.HANDLE, dirname) then
  18.     Exp_entry.IMPEXP_PREZ_DIR.TEXT := dirname;  
  19. end;
  20.  
  21. procedure Impexp_prez_execute;
  22. begin
  23.   if MessageBox(nil, "Opravdu si p°ejete provΘst export dat?", "Dotaz", mb_yes_no+mb_quest) = 6 then
  24.     if ImpExp_ExExpAllExternal(Exp_entry.IMPEXP_PREZ_DIR.TEXT,Exp_entry.IMPEXP_PREZ_APP.TEXT) then begin
  25.       MessageBox(nil, "Provedeno.", "Info", mb_ok+mb_info);
  26.       Exp_entry.CLOSE;
  27.     end
  28.     else
  29.       MessageBox(nil, "Export se nezda°il!", "Chyba", mb_ok+mb_stop);
  30. end;
  31.  
  32.