Recent content by Faitie

  1. Faitie

    10.2b and google .NET library

    Hi PT'ers I was wondering if someone around here had any experience using the google-gdata or any other external .net library in 10.2b. I'm trying to get it to work but cant seem to find how to link the .net assemblies to the project. What i'm doing now is going to project -> properties ->...
  2. Faitie

    dynamic run

    i'll let you know if i find a solution.
  3. Faitie

    dynamic run

    It works for fixed parameters, but i did not find a solution for a variable parameters. do you have a idea ?
  4. Faitie

    dynamic run

    Ok found it, thanks for the fast help Cringer ^^ you can use run value(table.path)(input 1, input 2, input 3).
  5. Faitie

    dynamic run

    Hey thanks for the quick reply, but assuming i have input parameters for the .p files. how should i do that ?
  6. Faitie

    dynamic run

    Hey PT I was wondering if there is a way i could do this. I have a table that contains relative paths to a lot of .p files. Now i would like to find first over that table, grab the field that contains the path. And use that to load the .p file. using RUN table.path Is there a way i could do...
  7. Faitie

    screenshots

    no, unfortunatly not ;) thanks tough.
  8. Faitie

    screenshots

    already looking in to that, trying to get a C# method running from within Progress but i dont seem to be doing it right. This is what i got so far. DEF VAR cTekst AS CHAR NO-UNDO. RUN Hallo(OUTPUT cTekst). MESSAGE cTekst VIEW-AS ALERT-BOX INFO BUTTONS OK. PROCEDURE Hallo EXTERNAL...
  9. Faitie

    screenshots

    Googling doesnt seem to help me alot so, here is my question. Is there a way in Progress to programmaticly take a screenshot? If so how could i do it, is there a OCX for it or somthing else. Thanks in advance.
  10. Faitie

    iterating over all widgets in my window

    solved . PROCEDURE loopWidgets: DEFINE VARIABLE hWindow AS HANDLE NO-UNDO. DEFINE VARIABLE hFrame AS HANDLE NO-UNDO. DEFINE VARIABLE hObject AS HANDLE NO-UNDO. ASSIGN hWindow = TARGET-PROCEDURE:CURRENT-WINDOW hFrame = hWindow:FIRST-CHILD hObject =...
  11. Faitie

    iterating over all widgets in my window

    Hello dear progressTalkers , I would like some help with this issue. Is there a fast way to itterate over all the widgets in my window? Some premade code sample that can do this? Any help is greatly appreciated.
  12. Faitie

    looping trough parsed default-buffer-handle

    solved my problem, i used this to fix it. DEF VAR bhKonFunc AS HANDLE NO-UNDO. /* making handles */ DEF VAR qhKonFunc AS HANDLE NO-UNDO. /* making handles */ CREATE QUERY qhKonFunc. qhKonFunc:ADD-BUFFER(hanKonfunktie). /*adding the default-buffer-handle from window 1 to the...
  13. Faitie

    looping trough parsed default-buffer-handle

    The tool i build consists of 2 windows. The first(main) displays the content of a table. When i want to add a record to the table i open a 2nd window(the add window) there i can fill in the field that will populate that record. Now when i open my 2nd window I parse the the default-buffer-handle...
Top