Search results

  1. C

    C# question

    Ok then I have another possible solution. I thought, but I think it's not possible. I could add a row in a table (Progress) in C#. Trigger with a session trigger in Progress an on create. But that doesn't work either. The following code: CREATE "ClassLibrary1.TestProgressCreateTable" hHdl...
  2. C

    C# question

    Is it possible to access a structured procedure from C#? Is it possible to access a .w form (inside procedure, for changing data) from C#? I don't think so, do I overlook something? Kind regards, Tom
  3. C

    question about Progress : SEARCH COMMAND

    Thanks But what will you do when you have a pathname and you only want to have the directory or the filename? Kind regards, Tom
  4. C

    C# question

    Ok, I found my mistakes. First of all I cannot add: PROCEDURE NAME: DEFINE INPUT PARAMETER cInput AS CHARACTER. DEFINE OUTPUT PARAMETER cOutput AS CHARACTER. cOutput = "OUTPUT " + cInput. END. I have to do it like follows: DEFINE INPUT PARAMETER cInput AS CHARACTER. DEFINE OUTPUT...
  5. C

    C# question

    Hello, I have done some tests with Visual Studio.NET. (C#) I created an easy procedure like follows: (PROGRESS) /* Test.p */ PROCEDURE ShowMe : DEFINE INPUT PARAMETER cInput AS CHARACTER. DEFINE OUTPUT PARAMETER cOutput AS CHARACTER. ASSIGN cOutput = cInput + " --- " + cInput. END...
  6. C

    question about Progress : SEARCH COMMAND

    Thanks, I'll check.
  7. C

    C# question

    Thanks, I'll do some tests with this proxygen. It looks quite interesting. Kind regards, Tom
  8. C

    question about Progress : SEARCH COMMAND

    Thanks! It works like a charm! Kind regards, Tom
  9. C

    C# question

    Hey LLoydt, Ok and what is a proxygen in this case? I use Progress 101B. Can you give a little example, some more information please? Thanks in advance, Tom
  10. C

    question about Progress : SEARCH COMMAND

    Hello, I want to check if a certain directory exist with the SEARCH function. I tried the following code: DEFINE VARIABLE cPath AS CHARACTER NO-UNDO. cPath = SEARCH("e:\test\"). MESSAGE cPath VIEW-AS ALERT-BOX. RETURNS ? DEFINE VARIABLE cPath AS CHARACTER NO-UNDO. cPath =...
  11. C

    C# question

    Thank you for your fast respons. Idd I want to trigger an event from my component to Progress. It's not a big problem because I used a while loop in Progress to read those variable with a wait function. This works great ofcourse. No memory problems, no cpu problems. But my colleage told me...
  12. C

    C# question

    Hello, I have a little question about Progress. I have created a simple dll for Progress. (made in C#). THE DLL: (Bankterminal application) 1. connect with a serial port 2. send an amount to pay 3. retrieve money 4. retrieve result Now, I want to fire an event in C#, that fires an event...
Top