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. blocktl

    crystal viewer is not launching

    Cathy, you're a lifesaver. Your code worked perfectly. With your form and Dave's ReportSourceRouter, I finally have what the client wants. Thank you both ever so much.
  2. blocktl

    crystal viewer is not launching

    Thanks Cathy for your input. I think this is a dll problem though. Dave, can you tell me where to get a copy of your dll. THe newest one I can find is 8.5.0.473
  3. blocktl

    Crystal viewer is not showing report

    I can see one report at a time in the viewer. I don't know the name of the viewer dll. I'm running crystal 8.5 on a windows 2000 machine.
  4. blocktl

    Crystal viewer is not showing report

    thanks Vidru, but the viewreport statement is still not doing anything. The code immediately moves to the next statement. no errors, no viewer, no nothing! I appreciate your help
  5. blocktl

    crystal viewer is not launching

    My code is: Dim crxApp As New CRAXDRT.Application Dim crxRpt As CRAXDRT.Report 'Declare a ReportSourceRouter object Dim MultiReport As New CRVIEWERLibCtl.ReportSourceRouter ' Open the report Set crxRpt = crxApp.OpenReport(App.Path & "\PrtPicTkt.rpt") ' Clear any...
  6. blocktl

    Crystal viewer is not showing report

    thanks virdru that's exactly what i want. My code now is: Dim crxApp As New CRAXDRT.Application Dim crxRpt As CRAXDRT.Report 'Declare a ReportSourceRouter object Dim MultiReport As New CRVIEWERLibCtl.ReportSourceRouter ' Open the report Set crxRpt =...
  7. blocktl

    Crystal viewer is not showing report

    This is my code: Dim crxApp As New CRAXDRT.Application Dim crxRpt As CRAXDRT.Report ' Open the report Set crxRpt = crxApp.OpenReport(App.Path & "\PrtPicTkt.rpt") ' Clear any saved data to force the report to read from the db crxRpt.DiscardSavedData ' Set the...
  8. blocktl

    Concatenate text

    can anyone tell me what's wrong with this syntax? UPDATE tablename SET tablename.vendorid = left(tablename.vendorid,3) + ‘V’ + right(tablename.vendorid,3);
  9. blocktl

    INET VB control not working with FTP

    Thanks, I already did that
  10. blocktl

    INET control not working with FTP

    The following statement is not working for me. I am getting a message that no such file or directory exists on the FTP filename(filenm). I have used this control before without difficulty, but not this time. Can anyone tell me what is wrong with this statement? [ip address...
  11. blocktl

    INET VB control not working with FTP

    The following statement is not working for me. I am getting a message that no such file or directory exists on the FTP filename(filenm). I have used this control before without difficulty, but not this time. Can anyone tell me what is wrong with this statement? [ip address...
  12. blocktl

    unable to execute command 'Vmenu.exe SUPERVISOR'

    Scott, those were good ideas, but neither one worked. We got the same error as before. Any more ideas?
  13. blocktl

    unable to execute command 'Vmenu.exe SUPERVISOR'

    I have been working with Exact tech support on this for a week with no solution. Maybe someone else has had this happen. Pervasive SQL 2000i Progression 7.6.200 (could be the problem right there) When I sign in as supervisor and go to visual menu builder, I get the error message "Unable...
  14. blocktl

    crpeExportToDisk returns false with no errors

    Below is a piece of code I wrote to execute a crystal report and export a character separated text file. I get no errors, but I also get no results. Any suggestions? Private Sub cmdExport_Click() Dim Result As Integer Dim MainJob As Integer Dim UseSameNumberFormat As Integer...

Part and Inventory Search

Back
Top