Recent content by mikelcid

  1. mikelcid

    Simple methods missing

    The displaying window, you can an example in these lines: METHOD PRIVATE VOID Cancelar1_Click( INPUT sender AS System.Object, INPUT e AS System.EventArgs ): CLOSE(). RETURN. END METHOD.
  2. mikelcid

    Simple methods missing

    Somebody can take a look to this? I am nearly desesperate!
  3. mikelcid

    Simple methods missing

    Hi all! Ia have just translated from one computer to another one a project written in Progress but when I open OpenEdge architech to continue programming it most of the simplest methods like CLOSE() give me an error simply saying that it can't understand the sentence but I don't see anything...
  4. mikelcid

    Copy tables changing the labels

    @MaximMonin and which is the code you use to fill that table?
  5. mikelcid

    Copy tables changing the labels

    @MaximMonin Any method to copy the data from the db to the created temp-table that would not take too much time? Thanks again!
  6. mikelcid

    Copy tables changing the labels

    @MaximMonin that code would create the temp-table but empty of data no? Where have I to put the name of the table I want to copy? The label format I want to give to the fields in my temp-table would be db table name + the previous label name, how can I do that? Thanks for your fast answer!
  7. mikelcid

    Copy tables changing the labels

    I think I have not explained myself well. I don't want to copy a temp-table to another one, I want to have the same data contained in a db table in a temp-table but with the labels changed. Obviously it is impossible to copy data from a db table to a temp-table with COPY-TEMP-TABLE method so...
  8. mikelcid

    Copy tables changing the labels

    Hi all! First I will show you my code, build using OpenEdge 10.2B: METHOD PUBLIC VOID crearQuery(INPUT sentencia AS CHARACTER, OUTPUT bindingSource1 AS Progress.Data.BindingSource): DEFINE VARIABLE hTable AS HANDLE NO-UNDO. DEFINE VARIABLE iField AS INTEGER NO-UNDO...
  9. mikelcid

    Problem with relations within a DataSet

    Hi all! I have a problem when building a dataset. What I am doing is joining some tables and filtering the data from the first one to give to a DevExpress control that shows all the data available from that dataset. The problem is that sometimes I join table A to table B and it works fine but...
  10. mikelcid

    Where to place FILL-WHERE-STRING

    I forget to say that the dataSet created in this method is the source for a Binding Source.
  11. mikelcid

    Where to place FILL-WHERE-STRING

    Hi all! I am doing a method that create a dataset adding relations between different tables and selecting from then some data filtered by where clauses, all this done dynamically because I give the names of the tables, the fields used to add the relations and the where clauses in variables. So...
  12. mikelcid

    Translating DevExpress Components

    Hi all! I'm working with Progress 10.2B and DevExpress all together and I want to translate all the components from this last one to Spanish but I have not achieved it yet. In their words I have to put a folder call "es" (that contains .dll with the Spanish translation of their components)...
  13. mikelcid

    Fill() options

    @RealHeavyDude before trying to apply your code to mine I have try to do a filter to the bindingSource doing bindingSource1:Filter = "CustNum = 8" but it provides the same data and it should work find because the data source for the binding is a DataSet. Any idea if I am able to use...
  14. mikelcid

    Integer() curiosity

    Hi all! I have read in ABL reference manual that if you use Integer() statement to convert a date what you receive is the total of days from 1/1/4713 B.C. to today's date. Anyone knows why 4713 BC? :D
  15. mikelcid

    Fill() options

    Hi all! I first show you the code and then I will explain it: CLASS crearDataSetDinamico: DEFINE PRIVATE VARIABLE bindingSource1 AS Progress.Data.BindingSource NO-UNDO. CONSTRUCTOR PUBLIC crearDataSetDinamico (INPUT filtro AS LOGICAL, /* Need filtering? */ INPUT...
Back
Top