Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
10answers
6k views

Good way to convert VB.Net to C#?

Are there any good conversion tools out there to convert VB.Net code to C#? FREE developerFusion Telerik CodeConverter SharpDevelop PAID VBConversions Vbconversions VB.Net to C# Converter ...
7
votes
2answers
1k views

How to create a va_list on GCC?

I'm trying to convert some code so that it compiles on gcc too (right now, it compiles only on MSVC). The code I'm stuck at is in a pseudo-formatting function that accepts as input a format string ...
6
votes
4answers
466 views

C Bit fields in C#

I need to translate a C struct to C# which uses bit fields. typedef struct foo { unsigned int bar1 : 1; unsigned int bar2 : 2; unsigned int bar3 : 3; unsigned int bar4 : 4; ...
6
votes
2answers
192 views

How do you port an open source project?

I am curious as to how people port open source projects such as Lucene and Hibernate from Java to .NET? Is it a simple matter of using the Java Language Conversion Assistant 2.0 released by Microsoft? ...
5
votes
2answers
88 views

How can I complete this Objective-C implementation of a cartesian product function?

As a follow up to my question here, I am trying to implement the following PHP function in Objective-C, which will generate a cartesian product: function array_cartesian_product($arrays) { ...
5
votes
2answers
2k views

Using Delphi to creating Win7 Jump list

I'm trying to create Jump list on windows 7 for my application using Delphi. I found this c++ code, but I'm not sure how to translate it to Delphi, any help? void CreateJumpList() { ...
4
votes
3answers
213 views

C# to VB.NET Code Converter

I need a C# to VB.NET code converter, and I'm willing to pay. I want something that's ultra convenient, as I want to reduce the amount of copy/paste that I have to do... so could anybody give me some ...
3
votes
1answer
392 views

Starting a process and listening for exit event

I have some code that starts a process and hooks up an event handler to handle when the process exits, the code I have is written in C# and I wonder if something similar is possible with Delphi. ...
3
votes
5answers
652 views

Does the GPL license contaminate?

Quick Question. I am doing a conversion of JavaScript code licensed by GPL (and not created by me) into PHP. Does the original GPL stand or can i put any license on the converted code? I found this ...
2
votes
2answers
58 views

Objective C equivalent of MessageDigest in Java?

I'm taking a task converting Java code to Objective C. This is the code in Java that I have to convert: private String getHash(String input) { String ret = null; try { ...
2
votes
2answers
134 views

How to convert MATLAB .m file into c file?

How to convert matlab .m file to c file. I have written a code in matlab regarding image processing and now i want to convert the code in to c file.can any one help on this?
2
votes
3answers
120 views

For Loops Using Javascript

I'm trying to convert this code from Javascript to CoffeeScript: for (var i = 0; i < names.length; i++) { str += "Hello" + names[i] + "!<br />"; } But at the CoffeeScript project home ...
2
votes
7answers
334 views

C# to C++ Translation

I am coming towards the end of a project that I created in C#. Unfortunately, the target hardware only comes with compilers for C/C++. My dad is an embedded programmer so he will be making the ...
2
votes
1answer
149 views

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 ...
2
votes
7answers
368 views

string vs System.String, int vs System.Int32 : another Alias vs Type Name question

Quite often I see source code where language's keyword are replaced with full type names: System.String, System.Int32, System.GUID etc. Moreover, people who do this write complete type names ...
2
votes
5answers
220 views

how does vbscript evaluate string greater than string?

i'm converting some vbscript from an asp app and ran across a line in the form of If sCode > "" Then where I expect sCode to contain a string. i know enough vbscript to plod through it but i'm ...
2
votes
1answer
136 views

.NET to Java code transform

I know about IKVM.NET that converts Java bytecode to .NET CIL. Is there a tool that performs reverse conversion? either with or without support for translating WinForms to JavaFX/Swing GUIs. Thanks.
2
votes
8answers
144 views

Need some help converting VB.NET code to C#

I have a CRC class written in VB.NET. I need it in C#. I used an online converter to get me started, but I am getting some errors. byte[] buffer = new byte[BUFFER_SIZE]; iLookup = (crc32Result & ...
2
votes
1answer
1k views

ADO.NET Data Services Query Interceptor - can anyone tell me the VB syntax of this C#?

I am pretty new to VB.NET - and I'm struggling to convert the signature of the method in the following code snippet. The Expression<...>> bit. Thanks in advance. [QueryInterceptor("Orders")] ...
1
vote
3answers
98 views

Tool for 'Flattening' (simplifying) C# Source

I need to provide a copy of the source code to a third party, but given it's a nifty extensible framework that could be easily repurposed, I'd rather provide a less OO version (a 'procedural' version ...
1
vote
2answers
77 views

C# or VBNET equivalent to scope resolution operator?

I am porting php code to vbnet (i'm a little better at vbnet than c#). In the php is the scope resolution operator. Here's the bit: $args = phpZenfolio::processArgs( func_get_args() ); Equivalent ...
1
vote
0answers
55 views

Installation of PHP to ASP.NET migration tool on Windows 7 64-bit?

I am attempting to install the PHP to ASP.NET migration tool on W7 64 that has .NET 4, MVC2/3, VS 2010 installed. I had to load asp.net 1.1 to at least get the installed to run. However install fails. ...
1
vote
2answers
271 views

How do you convert C++ _tcscpy, _tcscat to Delphi?

I'm converting this code from C++ to Delphi but I don't get the following part of the code. Can anyone explain me what the following code means; what's happening to the szBuff buffer ? I'm pretty ...
1
vote
1answer
61 views

How can I write code in Java/ASP.NEt/Python for using a component based library written in PHP?

I have a component based library which is completely written in PHP and works like a charm. A sample snippet of the code is : <?php require_once 'lib/my_class_file.php'; $variable1 = ...
1
vote
3answers
148 views

C to C# code conversion - arrays as parameters

I'm stuck on a recursive function in the C code (I did not write the C code). Here is the snippet I'm converting: int makeroad(float x1, float y1, float x2, float y2, float var, float X[], float ...
1
vote
2answers
88 views

Is there a way to specify multiple formats in C# for a decimal string like in VB?

I am translating some code from VB to C# and came across this: Format(seg.R, " 00.00000;-00.00000") // <-- There is a leading space in the first format string ...which prints... 00.00000 ...
1
vote
6answers
668 views

Need a little more help converting a CRC function from VB.NET to C#

I probably should have just put all this in one question, sorry for that :( Second error Ok, this should be the end of errors (hopefully): private static string getCRC(string input, bool ...
1
vote
3answers
426 views

How do you return 'not uint' in C#?

I have some code written in VB that reads as follows: Return (Not (crc32Result)) I am trying to convert it to C#, and this is what I have: return (!(crc32Result)); However I get a compiler ...
0
votes
2answers
70 views

Conversion of php block to vbnet or c#

I have this block of php that i want to convert to c# or vbnet. I am stuck on the array methods since there is no direct equal to the is array and other bits like array merge. I know that arrays ...
0
votes
1answer
94 views

Tool To Convert Python Code Into PhP

I have read in different articles and Magazines that we have some tools or software application that can Convert Source Code of One language into code of another language. Is there Any open source or ...
0
votes
1answer
117 views

Convert Java Code To PHP - URL Connections and Reading Response

I wrote the following Java program to connect google.com, get its HTML source code in return, print the entire source code on the screen and then count the no. of line breaks (<br>) in the code. ...
0
votes
1answer
89 views

duplicate movieclip and sound on-off

on (press) { i = i + 1; duplicateMovieClip (_root.circle, "circle" + i, i); } how to use that code in flash as3 coding and please give me some example or link, how to create duplicate ...
0
votes
2answers
159 views

Converting Deterministic Path Code from C# to C++

Does anyone know how I can convert this (from C#) to C++? string location = Path.GetDirectoryName(Assembly.GetAssembly(typeof(ZigbeeCommUSB)).CodeBase); location = ...
0
votes
1answer
259 views

Price to convert one line of Cobol code to a modern language?

I would like to know any prices you have heard of for one-to-one conversion projects from Cobol code to a modern language. We are talking about programs with several hundred thousand lines of code.
0
votes
1answer
274 views

translating code from Java to C#/ASP.NET

I want to test this code found here. It allows me to auto-load content from server as the user scrolls down the scroll down. I am having difficulties trying to convert code to C#/ASP.NET. Primarily, ...
0
votes
1answer
278 views

How to convert a vb.Net 4.0 project to C# 4.0 project?

I looked into: http://www.developerfusion.com/tools/convert/vb-to-csharp/ as well as: http://www.icsharpcode.net/opensource/sd/ but neither does exactly what I want. EDIT: The first link ...
0
votes
1answer
185 views

Using ScriptGetProperties with Delphi

How can I use ScriptGetProperties API from Uniscribe Dll (usp10.dll) in Delphi I found an example in C++, but I don't know how to translate it, because I'm not good on C. const SCRIPT_PROPERTIES ...
0
votes
5answers
233 views

How would I shorten this If… Else… statement to check the state of a Date?

I am a C# programmer but dabbling in VB.Net because everybody else in my team uses it. In the interests of professional development I would like to shrink the following If... Else... statement. If ...
0
votes
2answers
156 views

Converting ASP.NET web site to MVC2

I have my existing web site developed using ASP.NET. It's college management system. Now I need to redevelop it on MVC2. What all changes do I need to do? I am little bit aware of MVC and have done ...
0
votes
1answer
124 views

Converting Code Snippet from C# to VB.NET

All the automated, online converters weren't able to convert this code. Unfortunately my brief knowledge of C# has also let me down. The code originates from a blog, linked from another of my ...
0
votes
4answers
396 views

convert this c# dictionary to vb.net

one more question on converting c# to vb. conversion tool is not doing a good job. Please let me know. Thanks private static readonly Dictionary<string, List<string>> ValidHtmlTags = ...
0
votes
4answers
142 views

Convert VB to C#: Email sending routine

I am new to C# and have a VB sub routine for sending emails. I am not sure how to convert to C#, can someone please help me? here is the sub: Sub SendAdditionalEmails() Dim strDelimeter As ...
-1
votes
3answers
87 views

Converting New With from C# to VB.NET - Compilation Error

I have the following code in C#: public static ArrayList GetGenders() { return new ArrayList() { new { Value = 1, Display = "ap" }, new { Value = 2, Display = "up" } }; } ...
-1
votes
2answers
55 views

Are there style checker for Ruby code as JSLint for javascript [closed]

Possible Duplicate: Where can I find an actively developed lint tool for Ruby? I'm new to Ruby and impressed about it's super flexibility. As a beginner it is hard for me to differentiate ...
-1
votes
1answer
68 views

C code implementation in Obj c [closed]

I am implementing C code in Obj c, So which frameworks I have to include to run the code?? I am getting following error: ld: file not found: ...
-2
votes
1answer
113 views

wifi code by c++ convert to android

This is a part of c++ code to connect between client and server, I need to an android code corresponds to c++ code? /* Create a reliable, stream socket using TCP */ if ((sock = socket(PF_INET, ...
-5
votes
2answers
433 views

How can I convert this code from Android 2.2 to 2.3? [closed]

Is Android 2.2 HTTP progressive streaming = HTTP Live Streaming? The code provided by the above link for http live streaming only works for android2.2 .I want to know what changes need to be done in ...