Recent content by adisney

  1. A

    Problem with Mailmerge

    Copied from our setup instructions for scheduled processes running Progress programs which do the type of task you describe above: ... 11. Run the Windows program Dcomcnfg.exe and ensure that the new user has access to launch the automation object for Word. Detailed instructions are listed...
  2. A

    OpenEdge 10.2B Graphical Client error

    We have had a similar problem with Windows Server 2008 and OpenEdge 10.2B - have not gotten to the bottom of it, since it doesn't occur consistently in our environment. It occurs when a user logs into our Progress software application. It may be related to some code we have in our startup...
  3. A

    How can we deploy ultra controls in Webclient

    The thread mentioned on PSDN appears to have a different URL now - when I click on the link I just get the main PSDN page. Any chance of an update? We are struggling with this right now.
  4. A

    Progress and MS WORD

    We had this; it turned out to be a problem with the Windows installation. We had to repair it (Google "repair Windows installation") and then everything worked perfectly.
  5. A

    Connecting remotely to AppServer on UNIX via Windows Progress Explorer Tool

    We have had the same problem; at one point (don't remember which Progress version, but it was HP-UX) we tracked it down to Windows and Unix handling CR and LF differently, and this somehow messing things up. We never could get it to work with Progress Explorer, now we use the Management Console...
  6. A

    Winword process (4gl 9.1d)

    Try adding in chWordApplication:Quit() no-error before you release the handle. Also, I would leave the whole thing as visible and see what happens when you run your code. Word may have some little dialogue box up which is preventing the close. Good luck! Anne
  7. A

    Crystal Report Viewer XI and dynamic XML data source

    Our solution (after 2 years of struggle) for using Crystal Report Viewer XI with a dynamic XML data source, without requiring a full Crystal Developer install on the client machine (very pricey!): Install Java, if not already installed (check C:\Program Files\java) Open Internet Explorer Go to...
  8. A

    OpenOffice - enable-events

    We're currently trying to switch our application from using Microsoft Word to OpenOffice Writer. So far, all has gone smoothly (no problems changing from Excel to Calc, BTW), except that I can't figure out how to have my Progress code (10.1C) notified when the Writer document is saved or when...
  9. A

    T-Mobile CellPhone and OpenEdge communication

    Good info - thanks for posting! Anne
  10. A

    How to find number of free appserver agents?

    Thank you all for the advice/ideas. Tom writes "Use an app server call to put report requests in the queue. Run the server queue as a batch process on the server (connect self-service for best performance). You could also create status checks and all sorts of exciting functionality like that...
  11. A

    How to find number of free appserver agents?

    We have an application which works with a stateless appserver, minimum of 2 servers, maximum of 5. We may have 100 users making calls to the appserver. (Please excuse me if my terminology is not 100% correct - hope you can figure out what I'm asking here) Using information gleaned from a...
  12. A

    Faxing - faxage.com

    I created an account and logged in, but can't see how to do it. Not really an intuitive user interface. Looks like a useful site, though; will be visiting it the next time I get stuck ... Anne
  13. A

    Faxing - faxage.com

    Our company, Great Valley Technologies, wanted to provide a faxing solution for our clients (medical offices) which would a) seamlessly integrate with our Progress product b) require no hardware/software installation c) scale well (price-wise) for clients ranging from a single-doctor office up...
  14. A

    wordappl:document:saveas - problem

    Try this: ch-WordApplication:ActiveDocument:saveas(lv-filename,0). where lv-filename is a variable containing the name of the file to which you want to save.
  15. A

    Running Crystal Report from xml file

    Or do this (which works even if data is saved with the report): define variable i as integer no-undo. define variable sItem as character no-undo. define variable sLoc as character no-undo. ... chReport = chApplication:OpenReport("sample.rpt",1). chReport:discardSavedData. /* set tables...
Top