Changeset 92 for oup/current/Helper_LevelDB.pas
- Timestamp:
- Jan 16, 2007, 12:35:04 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
oup/current/Helper_LevelDB.pas
r86 r92 59 59 Stream_Body, Stream_Names: TMemoryStream; 60 60 Stream_Dat, Stream_Raw, Stream_Sep: TFileStream; 61 OniDataConnection: TOniData; 61 62 62 63 … … 107 108 timeformat.LongTimeFormat := 'hh:nn:ss'; 108 109 timeformat.TimeSeparator := ':'; 110 111 connection := ConnectionExists(target); 112 if connection <> nil then 113 begin 114 ShowMessage('Destination-file is opened, close it in order to proceed conversion?'); 115 Exit; 116 end; 117 118 connection := ConnectionExists(source); 119 if connection <> nil then 120 begin 121 ShowMessage('Source-file is opened, close it in order to proceed conversion?'); 122 Exit; 123 end; 124 109 125 110 126 if CreateDataConnection(Source, ODB_ADB) = nil then
Note:
See TracChangeset
for help on using the changeset viewer.