From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,3d003adc56d89c98 X-Google-Attributes: gid103376,public From: "David Botton" Subject: Re: Ada / Visual C++ Integration Date: 2000/03/31 Message-ID: <3U9F4.3253$BW.231494@news-east.usenetserver.com>#1/1 X-Deja-AN: 605009883 References: <8bgahs$6m7$1@nnrp1.deja.com> X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3612.1700 X-Abuse-Info: Otherwise we will be unable to process your complaint properly X-Complaints-To: support@usenetserver.com Organization: WebUseNet Corp http://www.usenetserver.com - Home of the fastest NNTP servers on the Net. NNTP-Posting-Date: Fri, 31 Mar 2000 17:45:19 EST Newsgroups: comp.lang.ada Date: 2000-03-31T00:00:00+00:00 List-Id: It is possible to use OLE Automation and Ada together to easily accomplish what you are looking to do. The MFC wizards will help you create all the automation interfaces to the GUI. You then run BindCOM on the MFC executable to create a binding to the automation interfaces for Ada and away you go. I don't have time now to follow up with an example, but if you would like send me an e-mail and I will give you a simple example or two, along with a few other possible solutions. COM is a natural (and easy for Ada :-) solution to multi language problems. It also opens the ablity to have you run your GUIs remotely and other machines then where your Ada code is running. David Botton haughton1228@my-deja.com wrote in message <8bgahs$6m7$1@nnrp1.deja.com>... >I am trying to understand how to set up a similar environment in the NT >world. We would like to use Microsoft Visual C++ and MFC to re-create the >GUI (~100 non-trivial displays), adapt supporting C/C++ code from X-Windows >to Windows, and port the Ada code to the NT platform with as little change as >possible.