Search results

  1. R

    Report Builder - 0.00 Values

    Hey all, I have a report which has to be modifed like so: In any column where there is a value of $0.00, they want that field to be blank on report builder. How can i set up report builder to allow any value of $0.00 to be blank on the report??/ Much obliged. Paps
  2. R

    Report Builder - Big Black Square

    We are using Report Builder to print out invoices for a client. We are using Progress 9.1C. When printing out a batch of invoices, the first page of the first invoice prints out fine. The following 2 pages have a big black square on the right side completely covering all the numbers on the...
  3. R

    Progress Language Reference

    Thanks Everyone For The Help!!
  4. R

    Sonic Info in progress

    Are you talking about viewing messages which are stored in the Sonic Server? Or messages received by a MessageListener in Progress?
  5. R

    Progress Language Reference

    Hey Peggers, what's happening??/ Does anyone know where I can find an ONLINE copy of the Progress Language Reference. I can't seem to find it anywhere, and I'm a seasoned googler! LOL Let me know, cheers.
  6. R

    Printing Bar Codes

    Heypeggers!! God am i glad to see the server up and running again!! We are printing bar codes for a ticketing system that we've created. My question is: 1. Is there a way that I can print bar codes vertically? 2. If not, what code can i use to make bar codes less wide?? The...
  7. R

    Open File Button

    Thanks!! Worked like a charm. Cheers
  8. R

    VSprint

    Have you tried to look at the new pdf_Include file. If you are looking to create PDF's of course. :)
  9. R

    Open File Button

    We are trying to add a button for selecting a specific excel file to open in Progress. Is there any code that will allow an "Open" dialog box to pop up, so that the user can navigate to the specific file on their hard drive. (Similar to the Open File functionality found on the AppBuilder...
  10. R

    Pdf And Mirc Fonts

    OOPS I MEANT MICR ... BUT OF COURSE YOU ALL KNEW THAT ALREADY DIDN'T YA :)
  11. R

    Pdf And Mirc Fonts

    Hello everyone! First I want to thank everyone for the help in my last issue. My new issue has to deal with creating cheques using PDF. When we try to print the cheque with the same MIRC font that we used in Report Builder, Adobe Reader does not display it in the proper format. We've...
  12. R

    Printing to Dot Matrix

    There seems to be a little confusion, and I take the blame for that, and I apologize. I cannot create a Function, the code is written in a .p procedure which is called on the click of the print button. I have taken all your suggestions to heart, and have come up with a solution, with help...
  13. R

    Printing to Dot Matrix

    Thank You All For Your Wonderful Help!!!
  14. R

    Printing to Dot Matrix

    Thank You. I will give it a try also.
  15. R

    Printing to Dot Matrix

    Another good solution. I have been working on it and come up with something like this, which so far seems to be solving one of my issues: cInst1 = trim(SUBSTRING(string(cInst) ,1, 50)). cInst2 = trim(SUBSTRING(STRING(cInst), 51, 50)). cInst3 = trim(SUBSTRING(STRING(cInst), 101...
  16. R

    Printing to Dot Matrix

    cInst is a database field. The field represents a text box within our program. The user may enter one long line, or they may enter multiple lines. It is up to the user. I"m trying to solve two problems at once: 1) if the user types one long line, I want the line to continue on the next...
  17. R

    Printing to Dot Matrix

    No, cInst is the field name. The presence of multiple lines is dependent on what the user enters.
  18. R

    Printing to Dot Matrix

    Yes, the labels are pre-printed on the paper. /* Delivery Instructions */ PUT UNFORMATTED SKIP FILL (' ', 2) + cInst SKIP (5). /* Lower Box */ PUT UNFORMATTED SKIP FILL (' ',11) + cGross + ' ' + cUnit SKIP. PUT UNFORMATTED SKIP FILL (' ',11) + cNet + ' ' + cUnit SKIP. cNetGross =...
  19. R

    Printing to Dot Matrix

    All the fields are displaying properly. But the content in the field can change from ticket to ticket. Sometimes one line only, sometimes two or three. When it prints one line everything prints out aligned. It's when there are more than one line that the alignment below it is wrong...
  20. R

    Printing to Dot Matrix

    We are creating code to print ticket values on a dot matrix printer. The values being printed come from database fields. However, one of the fields can have multiple lines in it, thereby throwing off all the alignment of the fields after the multiple lines are printed. How can i set it...
Top