Recent content by mkontou

  1. M

    Imaging OCX

    Try searching in Prohress knowledge base for 'crystal report' and you will find tons of posts about it. http://progress.atgnow.com/esprogress/categoryBrowse.do
  2. M

    Imaging OCX

    The code should be: DEFINE VARIABLE oWord AS COM-HANDLE NO-UNDO. CREATE "Word.Application" oWord. oWord:documents:Open("Some.Doc"). oWord:Visible = True. PAUSE. RELEASE OBJECT oWord. Some.doc file should be on your hard disk and within a directory defined in your session propath. If it is...
  3. M

    Imaging OCX

    What are you using to execute Word and Open the file? Com-handles? OCX? Winexec? Provide your code to see.
  4. M

    Add binary to existing BLOB

    Thanks you for your help but I found a different approach, using ocx. Thank you again.
  5. M

    Imaging OCX

    Never mind, I got it. Thanks.
  6. M

    Imaging OCX

    From the Imaging for Windows Automation Open Method Description Opens an image file in the parent application window. This associates an image file with the ImageFile object. If a file is currently open, it should be closed before a new file is opened. (See Close Method). Note: This method is...
  7. M

    Imaging OCX

    I am trying to use the ocx controls of Imaging for windows, but not to do this via appBuilder and smart windows. I am looking for the way to use Imaging for windows like I do with Microsoft word: DEFINE VARIABLE oWord AS COM-HANDLE NO-UNDO. CREATE "Word.Application" oWord...
  8. M

    Add binary to existing BLOB

    May thanks for all your help. I have tried many ways with out success. Trying the code you provided, I get the output file, under my directory bur unable to open it. This is what I am trying. def var m1 as memptr. def var l1 as int. def var m2 as memptr. def var l2 as int. def var m3 as...
  9. M

    Add binary to existing BLOB

    How excactly do you combine memptr?
  10. M

    Add binary to existing BLOB

    Does anybody know if is possible to modify BLOB data so you can add pages to the scanned document? We save scanned documents in a database table as blob. Today we need to be able to have additional pages added to the exisitng BLOB records. Is that possible in anyway? Thanks.
  11. M

    Progress Application Development Standards

    That is good to know. Hopefully then, when we get upgraded to OE10 I will not find my self in a tunel, with no light, trying to figure out where to get out from. If you know what I mean :)
  12. M

    Progress Application Development Standards

    Of course, according to the Progress version you create the apropriate standards. And is not as simple as defining variables. From 8.2b to 9.1 for example, SDO where put in the picture. For me it was a major change and a big shock for the way I was implemenmting GUI applications. If one had...
  13. M

    Progress Application Development Standards

    There is an old doc of suggested standards written by the administrator of this site. http://resources.progresstalk.com/Do...0Documentation Excellent example of written work. Thanks
  14. M

    Progress Application Development Standards

    Mostly the first part you mentioned but a little bit of the second as well
  15. M

    Progress Application Development Standards

    I am trying to create some kind of standards for our companies software developers to follow when creating Gui and Web speed applications. So far, everybody is writting in any way each individual prefears and as a result we find it very difficult to take over some one elses project. Does anyone...
Top