Recent content by breakdown

  1. B

    Replace r code files

    You can add/replace multiple files in a procedure library using wildcards. Ex: prolib <library-name> -replace *.r -verbose
  2. B

    Piew - Free Progress Code Editor

    Re: New version This is a great editor, thank you for the time and energy you have put into this awesome tool!!
  3. B

    Problem with d-notes-display.z99

    Ah, that makes total sense. Thanks for posting up the resolution!
  4. B

    Batch Orders

    If you use EDI you can set up EDEPP to run every hour or every minute or however often you need it to run so that it can pick up an EDI order file (an 850 inbound) and then automatically run OEEBU when it's done reading in the file so that it will create the orders.
  5. B

    Problem with d-notes-display.z99

    Have you tried using CHOOSE instead of MOUSE-SELECT-CLICK? Other than that, make sure the frame name is correct. Is this the first time you're doing this in a Dialog window? Because they behave slightly differently than Smart Windows do. Do you see your &message when compiling? If not, then you...
  6. B

    Upgrade of SX.e 3.x to 4.x

    sx.e upgrade If you have custom code, it must be modified to interface with the new database schema (there are changes between 3 and 4) and the new code. If Infor/NxTrend wrote the mods for you, you will have to contact your SI manager there to have them do a custom code review. If you've...
  7. B

    Saving some time during dump and loads

    backup to disk Use the -vs switch on probkup and specify a file size that you want the backup files to be. You will then have to pass it a list of files to use once the first file size limit is reached. "-vs" will multiply the database blocksize by whatever value you provide for "-vs". For...
  8. B

    9.1D offline backup difficulties...

    offline backup Are you giving the full pathname to your database?
  9. B

    Backup large db on UNIX

    probkup file size Use the -vs switch on probkup and specify a file size that you want the backup files to be. You will then have to pass it a list of files to use once the first file size limit is reached. "-vs" will multiply the database blocksize by whatever value you provide for "-vs". For...
  10. B

    load delimited file and create new records

    delimited file load Try using this: input from value(v-file).
  11. B

    Converting Catalog items to ICSP

    ICSC to ICSP I have a piece of code that I have successfully used in the past to create ICSP records from a text file. It creates the ICSS records and the Keyword elements for F12 keyword lookups as well. I'm sure it could be easily changed to use ICSC as an input source rather than a text...
  12. B

    Array Copy

    Unfortunately, that is the only way to copy variable arrays in Progress. The only thing that might make it a little easier is the "extent" function. Use this if you don't know how many extents are in a variable. ex: Define var cVar1 as char extent 20 no-undo. Define var cVar2 like cVar1...
  13. B

    Initialize Combo Box

    To initialize the combo box, use the second item in the pair: ASSIGN cb-test:LIST-ITEM-PAIRS = ",,Value of Test 1,Test1Val" + ",Value of Test 2,Test2Val" cb-test:SCREEN-VALUE = "Test1Val". /* This will display "Value of Test 1" in the...
  14. B

    View-as Text chui problem in page-bottom

    If the database field is formatted for only 8 characters, you will have to override that format for your frame display. Try adding a "format" phrase to your frame definition. Ex: requis-achat.remarque view-as text size 115 by 5 format "x(30)"
Top