Log File of Compact: what does it mean?

L

Lars Brownies

A2003: To deploy my app I have an mde that relinks the FE and then compacts
it. For compacting I use the function below this message. In this function
the LogFile setting is set to True. Till yesterday a log file was never
created. Now, since deploying the latest FE, the function does generate a
log file, everytime with the following content:

K:\MyAppFolder\MyApp\MyApp-FE-dev-temp.mde : BlobCopy stream of 'myFormA'
exists!
K:\MyAppFolder\MyApp\MyApp-FE-dev-temp.mde : TypeInfoCopy stream of
'myFormA' exists!
K:\MyAppFolder\MyApp\MyApp-FE-dev-temp.mde : BlobCopy stream of 'myFormB'
exists!
K:\MyAppFolder\MyApp\MyApp-FE-dev-temp.mde : TypeInfoCopy stream of
'myFormB' exists!

The compact function however returns True (apparently no error) and the FE
works fine.
I also decompiled and compiled again but the log file keeps getting
generated.

I googled but haven't found these logging values.

My questions are:
- Does someone know what these logging values indicate?
- Is the FE maybe corrupt?
- Any other ideas?

Thanks,

Lars

Function pfCompactRepairDB(strSource As String, strDestination As String) As
Boolean
On Error GoTo error_handler

pfCompactRepairDB = Application.CompactRepair(LogFile:=True,
SourceFile:=strSource, DestinationFile:=strDestination)
Exit Function

error_handler:
MsgBox Err.Description
pfCompactRepairDB = False
End Function
 
L

Lars Brownies

For anyone who will run into this issue later on:
Deleting the 2 forms and importing them back in from the backup solved the
'problem', so now a log file is not created anymore. I wonder if this log
issue has something to do with a decompile action I did before deploying the
app.

Lars
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top