Error creating LRF document
Hi
Have just downloaded BookCreator 2.6.1 and the eBookPub 2.3.8.
I imported a txt file using the toolbars and did a word wrap. I saved the document and I clicked on the LRF button and got the error
Runtime error 5
Invalid procedure call or argument
Below is the resulting error line from debug.
It is looking for a form called FrmCreateLRF. Where is this form held? This is similar to the error that Stranjer displayed in an earlier post but I have eBookPub installed on my machine and I have Caliber running in the background.
Any thoughts?
Alan
Sub ShowLRFCreator()
'________________________________________________
' NAME: ShowLRFCreator
' AUTHOR: =X=
' DESCRIPTION: Launches the LRF Creator dialog box.
' HISTORY:
' DATE: 09/06/2008
'________________________________________________
If ActiveDocument.Saved = True Then
FrmCreateLRF.Show <--------------DEBUG gives ERROR LINE Here
Else
MsgBox "Document must be saved before creating an LRF", vbOKOnly, "Document must be saved!"
End If
End Sub
|