What does this error mean?
I got an error message when I run the program below:
VB Code:
CustomerRPT.ExportOptions.DestinationType = crEDTDiskFile
CustomerRPT.ExportOptions.DiskFileName = "C:\CustomerInfo.rtf"
CustomerRPT.ExportOptions.FormatType = crEFTExactRichText
CustomerRPT.Export (False)
Error message:
"Run-time error '-2147192184(80047288)': server has not been opened"
What does this error mean? What should I do?
Thanks!
Re: What does this error mean?
Quote:
Originally posted by claire99
I got an error message when I run the program below:
VB Code:
CustomerRPT.ExportOptions.DestinationType = crEDTDiskFile
CustomerRPT.ExportOptions.DiskFileName = "C:\CustomerInfo.rtf"
CustomerRPT.ExportOptions.FormatType = crEFTExactRichText
CustomerRPT.Export (False)
Error message:
"Run-time error '-2147192184(80047288)': server has not been opened"
What does this error mean? What should I do?
Thanks!
Looks like maybe you are trying to operate on some sort of COM object without initializing in maybe (ie Set x as New whatever ... or CreateObject("Whatever") ). What program are you wanting to interface with?