Hi crystalline,
There should be a property that you change for "export button enabled".
If that doesn't fix it though, the only way I found around it was to create a seperate button and put in the code manually (I'm guessing you're doing this in vb?). We determined that we only needed to export to excel, so we hardcoded some values:
Report.ExportOptions.DestinationType = crEDTDiskFile
Report.ExportOptions.FormatType = crEFTExcel70Tabular
'We've opted to save all files to the desktop (the user can move them from there)
Report.ExportOptions.DiskFileName = "c:\Documents and Settings\All Users\Desktop\" & strFileName & ".xls"
What you can do though if you want to be able to have the user select is to create a dialog form and create the option buttons, etc. yourself and then just associate the Report.ExportOptions variables to them.
There may be an easier way to do it, but I havn't found one..not even with replies from other people on this board.
Let me know if I can help further,
Jack