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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Keoki

  1. Keoki

    Addressograph (Generic / Text Only) Printer

    Thanks for responding. I finally figured it out. While working through the initial testing, I was only sending one line of text to the printer. When I would send this same line to a .txt file and then looked at the file, all I would see would be two squares that turned out to be end of file...
  2. Keoki

    Addressograph (Generic / Text Only) Printer

    Has anyone attempted to print to an addressograph printer? I have tried using crystal reports. Didn't work. I have tried using VB 6.0 and printing a string. Didn't work. For some reason, both methods seem to send line and form feeds that the addressograph doesn't like. I have searched high...
  3. Keoki

    Preventing e-mail exports while keeping other export types

    Hmmmm. That didn't work. The ExportButtonClicked event didn't even hit when I clicked the button, so the code within it was never processed. I do need to distribute the export dll's because there are only certain reports that we don't want to have the e-mail export ability. For other reports...
  4. Keoki

    Preventing e-mail exports while keeping other export types

    I tried that. Below is the code I used, but when the preview window came up, the e-mail export options were still available. 'remove e-mail export option Set ADTExportOptions = ADTReport.ExportOptions ADTExportOptions.DestinationType = 1 I was still able to e-mail. When I first set the code...
  5. Keoki

    Preventing e-mail exports while keeping other export types

    We are using the Automation Server in Crystal Reports 7.0 and Visual Basic 6.0. From the report preview window, the users can click on the export button to export their reports to multiple destinations: drives, exchange folders, e-mail, etc. Due to privacy requirements in the medical care...
  6. Keoki

    Dynamic report layout

    I thought of that, but we are talking about three to four thousand rows of information, with up to 4 columns for each row. There doesn't seem to be any good way to handle this. Keoki gb@cardinalhill.org
  7. Keoki

    Lining up text objects

    I, too, have suffered through these same frustrations. Good news on the horizon. Version 8 has align features somewhat similar to Access that makes the job a lot easier. Drawback, you have to upgrade. Keoki gb@cardinalhill.org
  8. Keoki

    Dynamic report layout

    Hi all, I need an idea of how to approach the development of a report. We are developing a new in-house software package to replace an old, DOS-based type package. In the old package, several dynamically designed reports allow the user to create financial reports. For example: The user...
  9. Keoki

    Getting access to a detailed printer dialog?

    Funny you should ask this. After much digging, I just found the answer to this. My answer though, was for Visual Basic 6. Maybe this will help you find a corresponding answer for C++. In VB6, the syntax is: ReportObject.PrintWindowOptions.HasPrintSetupButton = True From this you get a...
  10. Keoki

    Sharing variables and resetting value

    Thank you for replying to my question. Believe it or not, I had figured out how to do it. My solution is pretty similar to yours. First, I created a formula to calculate the difference between the credits and debits, such as: CurrencyVar TempResult := Sum ({@Debit}, {@GLAccountNumber}) -...
  11. Keoki

    Sharing variables and resetting value

    Forums Message Thread: -------------------------------------------------------------------------------- I am using a shared variable to pass the results of a formula from a subreport to a main report. If the value of the results is other than zero, than the receiving...
  12. Keoki

    How to show a 'specified' group with no data inside

    I don't know if this will work, but something to try.&nbsp;&nbsp;Create a formula that states something like:<br><br>If IsNull({FieldName]) or Trim({FieldName]) = &quot;&quot; Then<br>&nbsp;&nbsp;&nbsp;&nbsp;0<br>Else<br>&nbsp;&nbsp;&nbsp;&nbsp;{FieldName]<br>Then use this formula in place of...
  13. Keoki

    Exporting Woes

    I am attempting to export specific reports from inside Visual Basic 6.0 to text files.&nbsp;&nbsp;These files will be written to a CD, so that in 20 years, if someone wants to refer back to them, as a text file over other formats, we feel they will have the best chance to be able to retrieve...
  14. Keoki

    Accounting Column Style Report

    Cody,<br><br>I have a .mdb file called craze, but not a report.&nbsp;&nbsp;I would very much appreciate it if you could send me a copy of the report.&nbsp;&nbsp;I have never worked with Crystal Info.&nbsp;&nbsp;Will this report work with Crystal Reports?<br><br>Thanks,<br><br>Keoki<br><br><A...
  15. Keoki

    Accounting Column Style Report

    Cody,<br><br>I have a .mdb file called craze, but not a report.&nbsp;&nbsp;I would very much appreciate it if you could send me a copy of the report.&nbsp;&nbsp;I have never worked with Crystal Info.&nbsp;&nbsp;Will this report work with Crystal Reports?<br><br>Thanks,<br><br>Keoki...

Part and Inventory Search

Back
Top