Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
3k views

Mixing VB.Net and C# Code in an ASP.Net Web Application?

The question quite an older and often asked around, i have similar questions here but my question is a bit more specific. Q1. Is it legal to mix C# and VB.Net code in ASP.Net Web Application? Will it ...
6
votes
7answers
244 views

Using different languages in one project

I recently heard about the use of several different languages in a (big) project, I also read about famous services such as Twitter using Rails as frontend, mixed with some other languages, and Scala ...
5
votes
2answers
143 views

x87 FPOP and FCOM instructions - how do these work?

I've been tasked with writing a simple application in mixed C/ASM that has to use math coprocessor. There's the function cylinder(float x, float y, float z) that returns 1 if the given point is ...
4
votes
1answer
76 views

Is it possible with Padre to run and debug Perl scripts with a different Perl version?

Padre is a (open) IDE for Perl that does look promising. Since Padre is written in Perl itself, it is not apparent whether it's easily possible and practicable to run and debug Perl scripts in this ...
3
votes
1answer
133 views

c++ project using c# assemblies: how to speedup compile time?

I've got a mixed c++/c# project. The original project is c++ and has been extended using c# assemblies. In the beginning this was ok, but since the c# part is growing I experience a big problem ...
3
votes
4answers
824 views

Using Fortran to call C++ Functions

I'm trying to get some FORTRAN code to call a couple c++ functions that I wrote (c_tabs_ being one of them). Linking and everything works just fine, as long as I'm calling functions that don't belong ...
3
votes
2answers
464 views

Can I write parts of the Google App Engine code in Java, other parts in Python?

Google App Engine supports both Python and Java application development. Can I have both in the same application?
2
votes
4answers
157 views

How are heaps created in mixed language applications?

We have a front end written in Visual Basic 6.0 that calls several back end DLLs written in mixed C/C++. The problem is that each DLL appears to have its own heap and one of them isn’t big enough. ...
2
votes
2answers
89 views

Can Garbage Collector reach “garbage” left by a function written in another language?

Imagine that you call from a language with GC repetitively a function from another language (e.g., Fortran 95). The Fortran function leaves something allocated in the memory between calls which might ...
2
votes
7answers
2k views

Can you call C++ functions from Ada?

Can you call C++ functions from Ada? I'm wondering if there is a way to do this directly, without doing the implementation in C and writing a C++ wrapper & and Ada wrapper, e.g. I would like to ...
1
vote
2answers
46 views

Mixing PHP and XML syntax in NetBeans (7.0.1)

I'm dealing with PHP in XML, using NetBeans IDE 7.0.1; the problem is I'm having trouble getting NetBeans to understand what language(s) I'm working with (simultaneously). For instance, HTML markup ...
1
vote
2answers
247 views

Mixed Language Woes in Visual Studio 2008

I'm trying to figure out how to get mixed-language support working in Visual Studio 2008. In my app_code folder, I've created two subfolders (CS, VB), and added the following to the web.config file: ...
1
vote
0answers
1k views

Visual Studio, Intel Visual Fortran, and Visual C/C++ mixed-language compile

Working with Visual Studio 2008 Pro, with Intel Fortran compiler v11, on Windows 7 x64. I have an Intel Visual Fortran project set up with all the fortran source files. I wish to gradually replace ...
0
votes
1answer
78 views

VB.NET: error BC30037, followed by error BC30627 and error BC30465

I'm getting these errors: AnonymousPath\Anonymized.vb : error BC30037: Character is not valid. AnonymousPath\Anonymized.vb(2) : error BC30627: 'Option' statements must precede any declarations or ...