Search results

  1. M

    Loosly translated

    BLOB means (Binary Large OBject) and CLOB stands for (Character Large OBject). In my company we use BLOB to store some files in the database, Word-files, Excel-files, pictures etc... I´ll hope you got an idea how you can use BLOB's and CLOB's now. /Mikael
  2. M

    Dynamic TEMP-TABLE Parameter

    Hi wesf, I have done something like that. It was a while since I did it but i think you will have to use the TABLE-HANDE. I found a bit code in one of my files that look like this, hope it will help you a little bit. :up: /*Code*/ tth = TEMP-TABLE temptable:HANDLE. /* tth can be...
  3. M

    search an object by name or label

    Hi, I think you can do something like this. /*************** CODE *********/ DEFINE VARIABLE frameh AS HANDLE NO-UNDO. DEFINE VARIABLE temph AS HANDLE NO-UNDO. frameh = FRAME fMain:HANDLE. temph = frameh:FIRST-CHILD(). DO WHILE VALID-HANDLE(temph): /* do whatever you whant to do...
Top