Recent content by ruan007

  1. R

    Error SonicMQ Adapter OutOfMemoryError

    Hi, I posted the same thread on PSDN but hope someone here can shed some light on it as well. We have a problem in sending a large xml message (40M) to Sonic broker/container. Our client's application is running on Progress 9.1E and SonicMQ 7.5, I found that the default memory limit for MQ...
  2. R

    printing on shared receipt printer in Win 7 doesn't work

    aha, yes, I did. Sorry, I should have updated this thread. don't use the output statement, sending the file directly to the printer will work: OS-COPY value(filename) VALUE(printername). Cheers
  3. R

    Adding a .Net assembly reference to Open Edge Architect

    did you copy the .net dll into your OEA project directory (or any sub directoires) and add the reference from there? Cheers
  4. R

    cannot print in Windows 7

    try this: OS-COPY value(filename) VALUE(printername). Cheers
  5. R

    record scope and lock question

    The listing file shows the "Line Blk" being 0, that I think it's the procedure itself, if i explicitly define the buffer inside the IP, i am sure the listing file will shows the "line Blk" being 4. Is this a mistake by PSC? Regards
  6. R

    record scope and lock question

    Thanks for the reply. I understand the behavior for testing2.p, what confused me is why testing.p didn't behave the same, as the buffer is also scoped to the next outer block, which is the entire procedure. Regards
  7. R

    record scope and lock question

    Hi, To my understanding, if a record is being updated with an exclusive-lock, the record lock will not be released until either the transaction or the record buffer is out of scope the last. Looking at the following two listing files, both customer buffers are scoped to the entire procedure...
  8. R

    AI Roll Forward and Recid

    Thank you for the reply. I can't agree more with what you emphasized. The application we inherited used recid as a link between tables, which is really bad. everytime when we do a dump and load, we have to refresh the linked tables. We recently had the database corrupted, which needed to be...
  9. R

    AI Roll Forward and Recid

    Hi, Does AI roll forward re-calculates the Recid for each row? Thanks
  10. R

    Windows Ribbon Framework

    After many searches, I finally found a open source project that wraps Windows Ribbon Framework APIs into a manage .NET class. For those who are interested in exploring the WRF, you can download the class at http://windowsribbon.codeplex.com/, you will also need windows 7 SDK. To get you...
  11. R

    Data Binding Microsoft .NET Chart Control

    For someone who is interested in using the .NET Chart control, here is my workaround code. I have to use the .NET dataset as the datasource. def var series1 as System.Windows.Forms.DataVisualization.Charting.Series no-undo. def var myEnc as System.Text.UTF8Encoding. def var...
  12. R

    Data Binding Microsoft .NET Chart Control

    Hi, Have anyone used MS Chart control for .NET. I tried to use it on my 10.2B forms but was unable to get the chart displayed, it throwed an error (pls see attachment). Here is the simple code I tried: DEFINE PRIVATE VARIABLE chart1 AS System.Windows.Forms.DataVisualization.Charting.Chart...
  13. R

    Crystal report printing problem

    The printing problem only occurs when trying to run the program via remote desktop on production and it works when logging into the machine locally (i.e. not via remote desktop). I can render the data on a CR viewer, but still can't print.
  14. R

    Crystal report printing problem

    Hi progresstalker, I am in a frustrating situation in troubleshooting a crystal report printing problem: I run the following code in the production eviroment, where a lot of shared printers are accessible, through remote desktop. However, after I select the printer, crystal report doesn't...
  15. R

    Printing Issue via IE API

    Hi, A correction to my previous post. The webPrint:QUIT() call does terminate the iexplorer.exe process if there is no iexplorer process exists in the first place. In our case, we always have a embeded web brower to display intranet content. Another problem with webPrint:quit() method is that...
Top