Ignore:
Timestamp:
Jan 16, 2007, 12:35:04 AM (18 years ago)
Author:
alloc
Message:

Rev86 was first after multi-cons

File:
1 edited

Legend:

Unmodified
Added
Removed
  • oup/current/Helper_LevelDB.pas

    r86 r92  
    5959  Stream_Body, Stream_Names: TMemoryStream;
    6060  Stream_Dat, Stream_Raw, Stream_Sep: TFileStream;
     61  OniDataConnection: TOniData;
    6162
    6263
     
    107108  timeformat.LongTimeFormat := 'hh:nn:ss';
    108109  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
    109125
    110126  if CreateDataConnection(Source, ODB_ADB) = nil then
Note: See TracChangeset for help on using the changeset viewer.