Search results

  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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)...
  6. 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
  7. 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...
  8. mikelcid

    Copy tables filtering data

    Hi all! I want to copy the data from one table to another one but filtering the data. Imagine that I have the Customer table from sports2000 and I want to have in another table the same table but only with CustNum = 2. How can I do that?
  9. mikelcid

    Re-assigning extent to an array

    Hi all again! I have a problem with the extent of an array. I have two combo-box, the first one the names of tables from a DB and when the user select one of these tables I fill-in the other combo-box with the fields from the table selected. That works fine but if the user change his...
  10. mikelcid

    Problem with openFileDialog

    Hi! I have constructed an openFileDialog for selecting reports to open them in and End-User report designer. It works fine but when the openFileDialog is opened in the name fill-in, just above type, it puts "openFileDialog1" and I want that fill-in to be empty but I don't say anywhere hot...
  11. mikelcid

    Creating a combo-box without Extent

    Hi all! I'm creating a combo-box with the names of the tables from a DB. I have a problem with the array that I add to the combo-box. i = 1. DEFINE VARIABLE arrayvar0 AS System.Object EXTENT NO-UNDO. FOR EACH _file WHERE _file._Hidden = FALSE NO-LOCK: arrayvar0[i]...
  12. mikelcid

    Getting table names

    Hi all! I want to construct a combo-box in which each row is the name from each table in a database but filling the combo-box dinamically, how can I do that? I'm using OpenEdge 10.2B Architect. Thx!
  13. mikelcid

    Appending two tables to a Binding Source

    Hi all! I am developing a custorm Designer Form for reports with DevExpress XReport and I would like to give it a binding source with two tables but I have take a look to it and I only find ways to append only one table to a binding source. The question is if it exits any way for appending...
  14. mikelcid

    Define a Temp-Table with a variable containing table name

    Hi everybody! I want to define a temp-table like another table which name is contained in a character variable. I have to try to do DEFINE PRIVATE VARIABLE tabla AS CHARACTER NO-UNDO INIT "fa_cabfac". DEFINE PRIVATE VARIABLE tt_tabla LIKE-SEQUENTIAL tabla. but it does not work...
Back
Top