code-converter

Tools for converting from ASP to ASP.NET?

We have a large ASP (classic ASP) application and we would like to convert it to .NET in order to work on further releases. It makes no sense continuing to use ASP as it is obsolete, and we don't want to rewrite it from scratch (Joel Spolsky tells you why). Are there any tools for converting from ASP to ASP.NET 2.0 or 3.5? ...

Are there any tools for converting Managed C++ to C++/CLI?

We have an old project written using Managed C++ syntax. I would like to propose to the team a reasonably pain-free (I don't mind some level of human interaction, I think I'm realistic in my expectations that we'll still have to do some work by hand) method of updating the existing code to C++/CLI syntax so that we can also add XML docum...

Convert Javacript code to VBScript code?

I have been given a task to convert code that is written in JavaScript over to VBScript. It is actually quite basic code and it is really just the syntax that needs to be converted. For example if (str == "string text") { foo = "foo"; } else { foo2 = "foo2"; } becomes If (str = "string text") Then foo = "foo" Else foo2...

Why do language converters suck?

Why do language converters/interpreters function poorly. Its seems that if you have function x(,) and functions x() takes blah, blah, for parameters and can return x,x and x, then it should be easy for the interpreter programmer to make the function in the converted language to act in the exact same way. I know that programmers writing...

is there an easy way to convert jquery code to javascript?

hopefully the question doesn't sound stupid, but there are lots of examples out there of achieving certain things in javascript/dom using jQuery. Using jQuery is not always an option (or even a want) which can make understanding the examples of javascript solutions written in jQuery hard. Is there an easy way to convert jQuery code to r...

Conversion of Delphi code to Java

Does a parser exist for delphi which can be used to convert the delphi code into Java code automatically? Please Help!!! ...

How to parse *.py file with python?

How to parse *.py file with python? If my question is duplicated, please let me know another thread, because I can't find it. Why I like to do is, I like to try Basic Source Code Converter from Python to Go Language. Which module should I use? And your Idea on, should I go ahead or better not? If I should go ahead, please let me know...

Convert VB.NET code to C#

Hi, Is there a library that I can use to convert VB.Net code into C#? There is http://codeconverter.sharpdevelop.net/ but i don't want to use it from a web service. ...

Looking for a Code Converter to Convert a Normal Java Code to Reflection-Style Code

I'm looking for a converter to make a reflection-style Java code from a normal Java code. I'm doing this to prevent exceptions like NoClassDefFoundError (I want to be dependent to a class, but I want Java to simply ignore the code if the library I'm using doesn't have that dependency class). I expect converter like this: initial code:...

C# version of mp4parser

I am looking to parse mp4 for my .net application. I couldn't find any mp4 parser in .net. Found mp4parser which is in java. Please let me know is there any C# version available? if no, is it possible to use mp4parser with .net? ...