Search results

  1. S

    Windows 10 GUI - how to detect window moved?

    Hi keit, try it, maybe its works for you.
  2. S

    Cost of Lisensing

    Thanks Tamhas, regards.
  3. S

    Cost of Lisensing

    Thanks Tamhas possibly contact you by mail that tells me a representative in the United States to see the possibility of acquiring directly there. Sincerely, Sergio.
  4. S

    Cost of Lisensing

    Good day, I need to pass if anyone knows the cost of licensing in the U.S. for OpenEdge version 11.3 to replace V9.1D products, I'm from Argentina and here I spent the following values in U.S. dollars: WorkGroup DB 10 users ($ 4,010) ClientNetworking 10 user ($ 2,190) AppServer with 2 agents...
  5. S

    Get Text of radio buttons

    Hi, taking the above example. DEFINE VARIABLE RADIO-SET-1 AS INTEGER VIEW-AS RADIO-SET VERTICAL RADIO-BUTTONS "Red", 1, "Green", 2, "Blue", 3 SIZE 12 BY 3 NO-UNDO. UPDATE RADIO-SET-1. DISPLAY radio-set-1:screen-value LABEL...
  6. S

    Question RAW-TRANSFER Database Update

    Hi, this is article from ProKB P20478 and work fine Status: Unverified GOAL: RAW TRANSFER- solution to save data in RAW FIELDS and be able to restore it even if the original DB structure is changed FACT(s) (Environment): OpenEdge Category: Language (4GL/ABL) Progress 9.x OpenEdge 10.x...
  7. S

    For each to retrieve data from two tables

    Hi, try this: for each icsp where icsp.cono = 80 and icsp.prod = v-prod, each icsw where icsw.cono = icsp.cono and icsw.prod = icsp.prod exclusive-lock: ... end. Regards.
  8. S

    Possible Index Corruption

    Hi, you tri FOR EACH Job WHERE Job.Issued = ? /* unknown */
  9. S

    Where do I specify the "MIN-SIZE" in the OE Architect

    Hi Joel, this is a option of compile statement: COMPILE { procedure | VALUE ( expression ) } [ ATTR-SPACE [ = logical-expression ] ] [ SAVE [ = logical-expression ] [ INTO { directory | VALUE ( expression ) } ] ] [ LISTING { listfile | VALUE ( expression ) } [ APPEND [...
  10. S

    Wrapper for QAD Sales Order Maintenance

    Hi, may be this will serve, connect to sports2000 db: ON CREATE OF Customer DO: /* Not apply - apply initial values defined in the schema */ IF Customer.Terms = '' THEN ASSIGN Customer.Terms = 'NUEVOS TERMINOS'. /* apply */ IF Customer.Address = '' THEN ASSIGN...
  11. S

    How to Express SQL "IN" statment in Progress

    Hi, this example demonstrates the use of LOOKUP and INDEX. DEFINE VARIABLE finish AS CHAR INITIAL '69G' NO-UNDO. DISPLAY LOOKUP(finish,'75D,69G,78') LABEL 'LOOKUP'/* ENTRY # 2 */ INDEX('75D,69G,78', finish) LABEL 'INDEX' /* POSITION # 5 */. Regards.
  12. S

    vendor record duplication in data extraction

    Hi, this will serve? FOR EACH VO_MSTR NO-LOCK, EACH AP_MSTR WHERE AP_REF = VO_REF AND AP_TYPE = 'VO' AND AP_DATE >= 01/01/10 AND AP_DATE <= TODAY NO-LOCK, EACH VPO_DET WHERE vpo_ref = vo_ref NO-LOCK BREAK BY field_must_be_unique : IF...
  13. S

    Browse - best way to show total lines

    Hi Stefan, this will serve?? ON ROW-DISPLAY OF BROWSE br DO: IF tt.irowtype = 1 THEN ASSIGN hw[1]:FONT = 7 /* font courier new */ hw[1]:FORMAT = ">" + FILL(CHR(175),12). . IF tt.irowtype = 2 THEN ASSIGN hw[1]:font = 7 hw[1]:FORMAT...
  14. S

    _mprosrv.exe processes running on the server - 100% used each morning

    Hi, did you tried to not run the process before connecting users?. Maybe this process is the problem.
  15. S

    Assign string with { & } characters to a character variables

    Hi, try it. define variable c-dat as char. c-dat = '~{' + 'hola' + '~}'. display c-dat. Regards.
  16. S

    Add on the end of Browse

    Hi, this example was taken from the Progress Knowledge Base with some modification. Regards.
  17. S

    first and last date of previous month

    Hi, try it. DEFINE VARIABLE d-fecha AS DATE INITIAL 04/03/2012. /* MM/DD/YYYY */ DISPLAY d-fecha /* SOME-DATE */ DAY(d-fecha) /* DAY-SOME-DATE */ d-fecha -...
  18. S

    apply event on browse

    Hi Maria, I leave here an example of updating data in a table. This example is in the Programming Handbook. Please read it. /* p-br12.p */ DEFINE BUTTON BUTTON-1 LABEL "&Modificar" SIZE 15 BY 1.14. DEFINE QUERY q1 FOR customer SCROLLING. DEFINE BROWSE b1 QUERY q1 DISPLAY...
  19. S

    Check is session is able to compile

    Hi, in development mode create a program with following code: MESSAGE 'Progress Version" PROGRESS VIEW-AS ALERT-BOX. QUIT. Save as z-runt.p and compile. From de command line: C:\DLC\bin\_progres.exe sports -1 -p z-runt.p -rr NOTE: -rr = Run-Time Version Regards.
  20. S

    apply event on browse

    Hi, try this: ON 'CHOOSE':U OF btn_modify in frame framef1 DO: APPLY "ENTRY":U to num_Fiche in browse B_browse . RETURN NO-APPLY. END. Regards.
Top