Search results

  1. 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...
  2. 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...
  3. 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...
  4. 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