Recent content by erick.rosales

  1. E

    Add-columns-from

    Hi... Could I use this for a Static Query... I mean... A query that was created using DEFINE QUERY... Thanks...
  2. E

    Database Growth Report

    Hi... Does anybody know how to tracking the transactions on Database... I mean.. I want to know witch tables is writting, is reading is creating etc... Of course I have a monouser environment.
  3. E

    Overloading a define trigger

    Thanks Bulklodd... You got a great idea and it was exactly what I want... You rulez¡¡¡¡¡
  4. E

    Overloading a define trigger

    Yes Francois... You are right... Only I wanted to confirm that this is not posible in Progress. But thinking... (The necesity is the mother of the creativity).... I'm going to use a DATABASE TRIGGER in order to do the Procedure to store in other Tables ... Well at least it has a solution...
  5. E

    Overloading a define trigger

    OK I have this strange and dark idea.... There is a Compiled Program which is a Window with widgets... All is fine till here. It has a button called btn-save. Since this is a Compiled Program I don´t have the source code to add more tasks to do in the trigger ON-CHOOSE. The only thing that...
  6. E

    How to obtain list of objects in a given frame

    Thanks Francois...¡¡¡ I got it¡¡¡¡
  7. E

    How to obtain list of objects in a given frame

    I've done some moves to yor code friend in order it works for me... In it does..¡¡¡ Now... I want to change the TAB-ORDER. Could you change te TAB-ORDER but... Without using directly the variables: DEF VAR L-uno AS INT. DEF VAR L-dos AS DEC. DEF VAR L-tres AS LOG. This is because I have...
  8. E

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

    For me doesnt work.. I'm using a Dynamic Fill-IN... Here is my code... IF p-objeto = "i-cedis" AND p-evento = "LEAVE" THEN DO: FIND FIRST estabelec WHERE estabelec.cod-estabel = wh-cedis:SCREEN-VALUE NO-LOCK NO-ERROR. IF NOT AVAILABLE estabelec THEN DO: MESSAGE...
  9. E

    License Costs

    Yes... I'm going to use OpenEdge Studio because I need create some things with my ERP Datasul. Studio aproaches more to the last versions of Provision UIB... It was that I understood... Architect, even looks better... in have many great features.. I don't know if I'll be able to program...
  10. E

    License Costs

    I asked this because I'm interested in buy a licence but because of the Cost of the Licence I NEED TO DO THE RIGHT BUY.... IS HIGHLY COSTLY TO DO THE WRONG SELECTION.
  11. E

    License Costs

    Anyone knows wich is the real diference between OpenEdge Studio and OpenEdge Architect. I saw some screenshots of Architec and it looks nice, although the screen of the AppBuilder is very small. I haven't seen screenshots of Studio. I'm looking for a Development Tool to do the following...
  12. E

    VB.Net and Progress 9.1D

    Using Datasul brothers... he :) Cheers¡¡¡¡¡¡
  13. E

    export/import

    Nice... Is working... thanks mate. So "~009" is the delimiter TAB.
  14. E

    Importing

    Why don't you try to develop a procedure to do this? Sometimes is better... And if it comma separated is very easy. input from value(c-file). repeat: create t-record. import delimiter "," t-record.field1 t-record.field2 t-record.field3...
  15. E

    load delimited file and create new records

    The issue is that the import file read line by line, not delimited field by delimited field. In the case that you want to read a single line containing all the records you must create a procedure to extract each record of the line. (A little bit industroius but is possible).
Top