Recent content by netfreaky

  1. N

    Preview Word/Excel documents in a progress window

    Indeed, you've put me in the right direction! It's an easy to implement ocx. The trial version is already implemented into a demo version, I'll let the boss decide ;)
  2. N

    Preview Word/Excel documents in a progress window

    Yes it worked, thanks! It's "only" a trial-version, I'll look for a full version though.
  3. N

    Preview Word/Excel documents in a progress window

    Thank you very much, I'll try this tomorrow!
  4. N

    Preview Word/Excel documents in a progress window

    Hi, for a basic document management system in OpenEdge 10.1B, I want to display a preview of some file types in a progress window. I could do this for images using the progress "picture"-object and for PDF documents using "AcroPDF.dll" as an ocx. I didn't find yet how to preview Word and Excel...
  5. N

    file management: files without extension

    Hi, Everyone can mail files to our company emailaddresses and personnel in our company save them to a location on 1 of our file servers... When they save such attachments without of with a hidden extension, it gets lost somewhere.
  6. N

    file management: files without extension

    Hi, as part of a project, I'm building a little "file management system", where users can upload files to specified location. In windows is it possible to hide known file extensions, but when those files are emailed, the extension is "lost". Word-documents still can be opened, but...
  7. N

    initial-dir of system-dialog get-file

    you're welcome... In a normal windows shortcut, you just add the directory in "start in" (see screenshot :awink:)? (we use citrix in 2 ways: published applications (mostly for using the secure gateway to log in through the internet; previous screenshot) and a "full desktop" (you get a normal...
  8. N

    initial-dir of system-dialog get-file

    We use Citrix Metaframe as well, and I have the solution for you :) One of the properties of your published application is the "working directory" (see screenshot attached). This will solve your problem, I think. Greetz, Netfreaky
  9. N

    initial-dir of system-dialog get-file

    Hi, Does anyone know how to initialize the initial-dir of a get-file system-dialog to "My Computer"? I did already find out with a get-dir system-dialog that choosing "My computer" returns an empty string. Initializing the initial-dir property of the get-file system-dialog to "" sets the...
  10. N

    file upload in OE 10.1B

    I'ld prefer uploading to another server, mostly on the same location as the application is running from, which means it can be done quickly... (but when it's not on the same location copying will last much, much longer) Is it possible to get that info while copying? (otherwise I'ld show a...
  11. N

    file upload in OE 10.1B

    Hi all, I'm programming a little "file upload tool" to attach files to the filing card of a person. This isn't a very big problem, using a file picker and copying the file using a dos-silent-value. The real challenge is to show the process in a progress bar. Did someone try this before...
  12. N

    message "how do i return focus to entry Field".

    for example: in the code, you want to set the cursor in the fill-in named "txtFILL", which is in frame "fraTest": you need the following code: APPLY "ENTRY":U TO txtFill IN FRAME fraTest. RETURN NO-APPLY.
  13. N

    message "how do i return focus to entry Field".

    The following works for me: APPLY "ENTRY":U TO <field> IN FRAME <frame-name>. RETURN NO-APPLY. Netfreaky
  14. N

    set forecolor of a MS forms label

    set forecolor of MS forms labels as handles Hi, i'm trying to make a program more flexible than we used to do. One of the things i want is to change the forecolors of all labels and fields to black before doing the input checks. We use MS Forms 2.0 Labels with OpenEdge 10.1A. The normal...
  15. N

    duplicate items in combo-box: wrong screen-value returned

    I currently use a little work-around for this problem: I added the unique id to the label, so the label is "unique"... But... I hope in a next version this will be solved.
Top