integrate

Integrating Prolog with C#

Does anyone know of a nice (and preferably free) way to integrate Prolog and C#? Im looking to create a Prolog dll or similar to call from my managed code, and retrieve an answer once all the processing has been complete. Im looking for it to be predominantly one sided (c# calls Prolog). I have seen this question which talks about Prol...

How to Integrate PHPList with the Existing Site

The existing site has it own "users" table in a database. I'm wondering how to integrate PHPList with the existing site so that a user can check the newsletter during registration. I installed phplist thru cpanel. Any help is greatly appreciated. ...

Lambda expression exercise

I have been trying to learn more about lambda expressions lately, and thought of a interesting exercise... is there a way to simplify a c++ integration function like this: // Integral Function double integrate(double a, double b, double (*f)(double)) { double sum = 0.0; // Evaluate integral{a,b} f(x) dx for(int n = 0 ; n <...

Can I integrate checked out files into a different branch on perforce

We were working on a design, and for that we created the skeleton of the classes in our main branch. Now, we are starting to code, and for that we got a new branch. So, it would be nice if I can move all the new files in the main branch into the new branch. However, I cannot check them in yet. So, is it possible to integrate the chec...

Existing sales/ordering engine that can be integrated to custom .NET app ?

Hi guys, There's this custom who wants software to generate quotes from a product catalog, print invoices, nothing too original here. But they also want a bunch of custom features and a custom presentation, so buy off-the-shelf won't do. Do you know any good product that we could integrate in the custom dev instead of reinventing the w...

integrating applescript in cocoa

I have made a short applescript that sends an email with attachment. Now I want to integrate this script in my cocoa application. I have tried the following code that i found on the internet: NSAppleScript *mailScript; NSString *scriptString= [NSString stringWithFormat:@"the applescript"]; mailScript = [[NSAppleScript alloc] initWithSou...

Integrate Adobe AIR With C++

Hello, I'm learning C++ and before this i was reading some tutorials in the internet of the Adobe AIR development, but if Adobe AIR is so much easy to learn and C++ is a very flexible and good language it's possible to integrate those two languages in a same project. Thanks! ...

Displaying another app in my form

I remember I had some app the launched other applications and placed them in tabs in it's form without the titlebars. I wonder how can that be done? Preferably with C# but if it's not possible/too hard within .NET C++ is fine too. Thanks. ...

What is the easiest way to integrate PayPal into a registration system?

Hi Does anyone know how to integrate a one time fee into paypal? The user clicks SignUp then is taken to a page to confirm t&c's and where they pay £50, they are then - if successful, taken to a page where they can enter details and create an account... but i only want this page to be visible to users coming from paypal... I thought abo...

I want to show off my C++ projects through a website.

The problem is that, well, it's C++. The way I've created them makes it such that they've always been run via a terminal/console window and wait for user input or else simply take a sample input and run with that. The output has also always been to the terminal screen or sometimes to a file. I'm not quite sure how I could take all of ...

Python AppEngine And HTML

Hello, I have a simple Hello World application in Python that i'm using with AppEngine, but i want to insert this in a HTML file, like this: I have a file called test.html and on it i have this snippet: <center><img src="test.png></center> // Here comes the Python App // I want to put the output of the Python application in this spac...

How does one integrate javascript controls into an existing css site?

This might be a basic CSS question: I have a site designed with well-defined CSS themes. I'm adding some controls (from jquery), but they have the style of their designers, not my site's. What is the easiest way (least amount of work) to make the inserted controls use the site's css rather than the styles of the control? Is there an easy...

how can I integrate the existing project written in C with the iphone view-based application project?

I would like to ask that if I have a project written in C and another project of view-based iphone application. How can I access that C methods, properties from the C library while I am working in the iphone project, I mean, how can I use the C project in iphone app? Any help would be appreciated, Thanks. ...

Are there tools to integrate Java and C++?

Hello, thanks for reading this question. I am doing this homework which need a GUI as frond end to integrate with back end code which written in C++. I wanna to write this front end GUI in java as its cross-platform feature and strong graphic components. Is there any good way I can integrate java and C++ well? Thank you ...

how to integrate bugzilla and HP quality center?

I'm working on integrating bugzilla with Hp Qc .. i'm performing this by using perl script by directly manipulating database using sql commands.. I want to use the webservices of bugzilla. I have gone thru the bugzilla webservice Api but tat wasnt enough to get started. I'm a beginner and this is first project of my career . please guide...

Complete integration of vbulletin, help desk, knowledge base, sales database, gallery, etc

Hi, I operate a PHP-based website in which there are several disjointed parts: a vBulletin forum, a help desk ticket system, a knowledge base, a large sales database (with license keys), and a gallery. In the future I plan on integrating all of these into a single customer backend, where they can for instance view their license key, sub...

Simplest way to integrate python gui app with c console app

I have a c console app which converts a c file to a html file, the c file location is passed to the program as a command line argument.(the app is for the windows platform) What I would like to do is have a python gui app to allow the user to select a file and pass the location of the file to the c app for processing. I already know ho...

MVC in a Webforms .net Webapplication

I'm interested in integrating MVC and Webforms to extend ScrewTurn Wiki that use webforms. Essentially my problem is that to keep ScrewTurn flexible and upgradeable I should write this as a plugin. I'm contemplating making it as a seperate web application, but then there would be some issues in sharing masterpages and I understand that I...

Is it possible to integrate Vaadin with Rails??? If so, how???

As i see Vaadin is a Java based UI framework. But it has some really nice set of widgets and a very good layout engine. Is it possible to integrate Rails and Vaadin? JSON perhaps?? ...

Integrate C++ Win32 Console project classes into Visual C++ (Windows forms application) project in Visual Studio 2008

Hi! I have written some classes, the back end of a project in C++ (win32 project) and then wanted to add a GUI to it. Visual C++ seemed to be a good solution but after having the GUI part done I couldn't integrate the plain C++ code. Does someone have any experience with that? I get 'unresolved externals' error. Apperantly the .cpp file...