Search results

  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).
  16. E

    export/import

    Hi... Only a simple question.... How do you import a file with TAB delimiter... Could anyone post an example... Thanks.. I got this... but doesn't work... def var c-linea as char format "x(50)" extent 10. input from value(c-archivo-quoter). repeat: import delimiter "~009" c-linea...
  17. E

    Mysql Odbc

    OK... I've installed MySql on my Machine... I could download it for free from MySQL site.... Is nice to use the GUI Tools... In a window you cold manipulate the database an dinformation like the Query Ananlyzer of SQL Server.... Now I need to find a sample of hoiw to connect it using JAVA...
  18. E

    Mysql Odbc

    Thanks friend...
  19. E

    Mysql Odbc

    OK I have read the information... And I won't do the test... Is a waste of time... PROGRESS DO NOT SUPPORT MySQL¡¡¡¡¡¡¡¡¡ I need to connected via MS Access but shure with some Performance Issues.
  20. E

    Mysql Odbc

    Yes... I've read the ODBC Dataserver documentation and only support some Databases. (I need to do a test by myself only to take me out the doubt if is possible to connect because is Open Database Base Connection, it means that I could connect whatever thing wich has an ODBC driver, but I know...
Top