Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dataent

    Printing

    Programmer33, This is how I have handled sending the report to the printer using the common dialog box. CommonDialog1.ShowPrinter If Err Then Err = 0 'user pressed the cancel button Rep.CancelPrinting Exit Sub End If Rep.PrintOut False, CommonDialog1.Copies Jeff
  2. dataent

    Runtime export report failed (zero lenght report file)

    Look at the following KB article http://support.crystaldecisions.com/library/kbase/articles/c2009582.asp
  3. dataent

    Stop exporting blank report

    Ido, Thank you for the suggestion. I am using the following code and I am not sure how to use the PrintingStatus.NumberOfRecordSelected when the export is done "unattended". Rep.RecordSelectionFormula = SF & " and {CCO.MST_DEPT_ALL} = """ & Dpt &...
  4. dataent

    Stop exporting blank report

    Using VB6 & CR8.5, I am generating a report for department totals and emailing the reports to the department head. If there are no transactions for a department, I do not want the report to be sent. Using the export command, is there any way to find out if there are no detail lines in the...
  5. dataent

    Export DestinationType = 2 - EmailOption

    Week, Did you try to turn on "Break on all errors" in VB (Tools\Options\General) and remove any "On Error Resume" statements from the procedure? Step through the code and it will "blow up" where ever the error is occuring. I had a similar problem, where the email...
  6. dataent

    Mapi Export

    It is a Crystal Decissions KB article, not Microsoft.
  7. dataent

    Mapi Export

    I have had a similar problem using Netscape as my email client. Using CR8.5 and VB6, I was trying to email the reports as an attachment from within my program. As long as the email address resided in my address book there was no problems, however if the address was not there I would get a...
  8. dataent

    EXPORT to disk file produces empty filecusing CRViewer.

    I had a similar problem with CR8 on a Windows 2000 machine. Here is a link to Crystal Decissions fix. There was a similar problem with CR7 on NT 4.0 machines. http://support.crystaldecisions.com/library/kbase/articles/c2009582.asp
  9. dataent

    Run-Time Error while exporting

    I need to email a report to department heads with only their information. I have a report that I pass the date in from a VB6 application, a list of dept numbers and email addresses are read from a file. The first time through the report works fine, the email goes out. However, the second time...
  10. dataent

    Export not working with Win2K machine from CRViewer 8.0

    UncleT, Go to the following link, it tells you to download the cr80dev.zip and install it. The problem is with the craxdrt.dll. http://support.crystaldecisions.com/library/kbase/articles/c2009582.asp Jeff
  11. dataent

    SP3 setup problem with arcsetup.exe

    I am trying to install service pack 3, when it is inspecting the configuration it finds that c:\arcsetup.exe is open or in use. I look in the task manager and do not see it, nor do I know what application may have started it. I tried renaming it with no luck. Any suggestions what may have...
  12. dataent

    Validation Event not fired when using menu or hotkey???

    On some of my forms, I have as many as 20 different fields that need to validated. One of the menu items is to mnuSave (F9). If the text box they are leaving needs to be validated prior to saving, I can catch it if they click on the cmdSave button but not if they select the menu or press F9...
  13. dataent

    Validation Event not fired when using menu or hotkey???

    Is there any way to trap if one of the hotkeys has been pressed to run the validation event?
  14. dataent

    Validation Event not fired when using menu or hotkey???

    We have just converted over to VB6 and started using the Validation Event. It does not seem that when a menu item is selected the validation event is fired off. If the user enters information in a text box and clicks on the cmdSave button, the validation event fires, If the user selects save...
  15. dataent

    Object Already Loaded Error with Flexgrid

    The number of columns is one greater than the number of fixed colunms and I removed the statements that set the number of fixedcolumnns and cols. Err is zero upon entering the LoadGridHeadings routine and stays at zero until the grid is referenced.
  16. dataent

    Object Already Loaded Error with Flexgrid

    I am trying to load the column headings on a flex grid as soon as the form is loaded and I am getting the error message "Runtime-Error '360' Object already loaded". Here is the code I am using, the first reference to grdDetail is where the error is occuring. The order of statements...
  17. dataent

    Cannot Export

    This is a known issue on Windows 2000 machines, go to the following website to get the download that fixes the problem. http://support.crystaldecisions.com/kbase/c2009582.asp
  18. dataent

    CR8 RDC LogOffServer

    Here is the solution I came up with after talking with Crystal Decisions tech support. They wanted me to have a seperate form with the crviewer on it and close that window prior to closing the form the report was called from and running the LogOffServer command. If Viewed Then Set...
  19. dataent

    Error message using RDC & RPT (VB)

    I use the same declarations but I use "Dim" instead of the "Public" on the report. Try this.
  20. dataent

    Exporting creates file with 0kb -- Why?

    Using VB5 & CR 8.0, I pull a file to the screen using the CRViewer try to export and get an empty file. It creates the file, just nothing is in the file. This is only happening on a Windows 2000 machine, I have tested on 95/98/NT with no problems. Any Ideas what may be causing this and how...

Part and Inventory Search

Back
Top