Search results

  1. A

    Call C# dll from within Progress 4GL

    I tried the tip but I get the error message that the .tlb file is not a valid Windows image. Please advise. Thanks,
  2. A

    Call C# dll from within Progress 4GL

    How do I add a .Net dll to Progress 10.1C and how do I then call/use it in a .p file. Thanks for your help.
  3. A

    Call C# dll from within Progress 4GL

    Hi there, I have a C# dll that i want to call from Progress code but I get the following error message : "Could not find entry point _GetDomain@0." Here is my Progress code : DEF VAR vResult AS CHAR NO-UNDO. RUN GetDomain (OUTPUT vResult). PROCEDURE GetDomain EXTERNAL...
  4. A

    Confirming User Identity

    The user is already authenticated when he/she logs on to their Windows machine against Active Directory, but the requirement is that we should verify if it is a genuine user before launching our Progress 4GL app (OpenEdge 10.1C). If ActiveDirectory issues some kind of a unique token to every...
  5. A

    Confirming User Identity

    We have an application written in Progress 4GL that we want to lauch without asking the user for credentials. Here is the scenario : User logs into their Windows machine and clicks on our application icon. Now the application need to verify if the user is a genuine user, and if yes, then...
  6. A

    How to call an external dll

    Thanks very much for the reply and code example. I really appreciate.
  7. A

    How to call an external dll

    Hi there, I have written a C# program that would confirm if the logged in user is from a particular domain, and return true or false. I want to run this from progress code and if the C# dll returns true, then I can continue with other processing, and if the C# dll returned false, then...
  8. A

    Cannot Insert Data into Tables via C#/ODBC

    Hi RealHeavyDude, Thanks for replying to my post. Here is the information you asked for: 1) OpenEdge ver 10.1 C 2) We are using a user created by Sysprogress 3) That user has write permissions to the table Thanks,
  9. A

    Cannot Insert Data into Tables via C#/ODBC

    Hi there, I am trying to insert data into a Progress table via C# using ODBC but I get the "Access denied (Authorization failed)" message. I can query the tables to retrieve results (using the Select statement) but cannot insert data. Any suggestions ? Thanks,
Top