The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
47 views

Convert code to C# from VB script

I am attempting to transition from VB script to C# with some legacy code that a colleague has. I cannot seem to determine how to transfer this line over. Any assistance would be helpful. Set objShell ...
0
votes
0answers
59 views

C++ to C# static_cast

I'm trying to convert an project from C++ to C# but in the C++ version the following code is used: std::list<PlayerBase*>& AllPlayers = AutoList<PlayerBase>::GetAllMembers(); And ...
0
votes
3answers
77 views

What does it mean to call a class as a function? [closed]

I'm porting some code from Java (I know nothing about this language) to C. By the fact that Java is a C-like language, I have no problem in converting most statements. But I have no idea what some ...
1
vote
3answers
44 views

C to Python code conversion(print address-like values)

I am trying to convert the following code from c to Python. The C code looks like: seed = (time(0) ^ (getpid() << 16)); fprintf("0x%08x \n", seed); that outputs values like 0x7d24defb. ...
-3
votes
1answer
90 views

how i convert ASP 7 IIS Website with mdb database to an android application? [closed]

i have Local small website for some solution i made, something that i use to run locally on my computer and i'm the only one that use it from localhost actually it's an application that made from ...
-4
votes
1answer
69 views

Need explanation, please [duplicate]

I'm still learning pascal and I have tried figuring out a way how to get this working, but now I found an example in Python but I have no clue how Python works and I need to hand out my program ...
0
votes
3answers
41 views

What is the prefix `I` before class name like IController, IObserver?

I'm learning MVP patter. In some examples, I saw this! Any one could demonstrate why programmers use this name convention?
1
vote
2answers
115 views

Foreach loop VB.Net to C# Code Conversion

Here's the code in VB.Net If Not queryItems Is Nothing Then For Each qItem As String In queryItems qItem = qItem.ToLower() Next End If and it's ...
-2
votes
1answer
214 views

Anybody know MATLAB and Python? (Code conversion MATLAB>Python) [closed]

I am trying to re-write this MATLAB program in Python. I haven't succeeded in getting the same Python output, yet. But my attempt is given beneath the MATLAB code. The code does not need any extra ...
1
vote
1answer
174 views

Matlab to OpenCV conversion - optimization?

I am converting Matlab code to OpenCV "C/cpp" code. And I have some doubts as below. A = [ 2; 10; 7; 1; 3; 6; 10; 10; 2; 10]; ind = [10; 5; 9; 2]; B is a submatrix of A ; Elements of matrix B ...
1
vote
1answer
89 views

equivalent for “ismember” of matlab in opencv?

What is the equivalent of "ismember" of matlab in opencv? I am trying to convert a matlab code to opencv ( C/CPP ). For this I need to convert the below step to Opencv. Can some one please guide me ...
1
vote
2answers
90 views

Build native c++ for use as .net library

I have the c++ source code of functionality which is appealing to me. What effort/work is involved/required in order to either reference this from a .net application or build this code as a .net ...
0
votes
1answer
970 views

Implementing timer code for Atmega 8 into atmega 16

This code snippet is written for atmega 8 taken from clapper circuit using atmega 8.Can anyone convert this code snippet for atmega-16 with a little explanation.As i am trying to implement the same ...
1
vote
1answer
87 views

Converting an application from Unity3d to Flash

I am attempting to convert my Unity3d game to flash but am experiencing trouble with comments. Because of the socket trouble, I am trying to use Json and Post, but I don't know where to start. I saw ...
1
vote
2answers
296 views

Delphi - XE2 code to Delphi7 needed. Using wininet to download a file

Note: I only want to use wininet, not urlmon-urldownloadtofile. Well, I have the following code which works perfectly in XE2 to download a file: procedure DownloadFile(URL: string; Path: string); ...
2
votes
2answers
175 views

Haskell to Python: multiple-functions conversion issue

I am pretty new to programming and I was asked to convert 3 haskell functions into python as a practice exercise. The 3 functions are connected, since output of one is used as the input of the next ...
2
votes
3answers
246 views

How to translate RETRIEVAL_POINTERS_BUFFER structure to Delphi?

I'm working with Windows API and have to recreate a structure inside a Delphi record. I think I have it down, but this one was a little confusing and I need to make sure I did this right. Here's the ...
0
votes
1answer
142 views

Pseudcode to java

I have looked around for the past hour or so but I can not find any help on this problem. I am trying to convert this pseudocode to java and can not figure out what I am doing wrong(it ever prints ...
2
votes
2answers
635 views

Converting Matlab to VB.NET

I recently got assigned a task to convert a few algorithms written in matlab to VB.NET (or C# if VB.NET isn't efficient). The matlab code itself consists of a lot of matrix algebra. I initially ...
0
votes
1answer
191 views

naming convention for sql tables [duplicate]

Possible Duplicate: mysql naming convention I'm start writing progect and start to think - what is the best naming convention for sql tables. we can name them in Upper case in Lower case ...
0
votes
0answers
284 views

Mips assembly to c++/pseudocode

Is anyone aware of any tools that would convert mips assembly code (not compiled) into c++ or pseudocode or any other basic readable code? I have some mips .s assembly files and I need to convert it ...
0
votes
1answer
138 views

XMLVM Android to iPhone Errors

The conversion of my Android application to the iPhone ObjectX environment as described in the XMLVM user manual works almost fine on my MAC, but I end up with 3 errors in the resulting XCode: The ...
1
vote
1answer
195 views

How to Convert Visual Basic Str() to Java code

I was wondering if there is a better implementation for converting the following VB6 snippets in Immediate window to Java: ? Format("002-", "") -2 ? Str("002-") -2 My Java code scans through the ...
0
votes
2answers
89 views

Java equivalent of Visual Basic MidB$

Is there an equivalent function in Java for MidB$? The function returns the specified number of bytes from a string where the definition is MidB$(String As String, Start As Long, [Length] ) As String ...
0
votes
3answers
153 views

What is wrong with this code snippet? Its giving me type declaration error

I am trying to convert this code into VB but it is giving me this error. CONVERSION ERROR: Code could not be converted. Details: -- line 1 col 8: invalid TypeDecl Please check for any errors in the ...
0
votes
4answers
3k views

How to get FileInfo via a foreach Loop?

Trying to convert some VB to C#... (learning C#, too). I have some code that loops through files in a directory and retrieves their file information. I have this originally in VB, but am trying to ...
0
votes
3answers
185 views

Error Converting C# to VB.NET

I am trying to convert this method to VB.NET but the online converters seem to make a mess of converting it. Can someone help: C# original: private IEnumerable<IGrouping<string, ...
2
votes
2answers
107 views

Java class to objective-C class

i need to know what is the equivalent code for the code below in Objective-C public MyClass(int x, int y) { xCoOrdinate = x; yCoOrdinate = y; } public int getXCoOrdinate() { ...
-4
votes
1answer
612 views

Convert PHP Function to Classic ASP [closed]

Could someone please help to convert the following PHP function into Classic ASP, I looked for an online converter with no luck, thanks in advance! $string = 'long string goes here with many ...
-6
votes
4answers
291 views

Convert this VB code to C#? [closed]

I was wondering if anyone would be able to help me convert the below code to c#? From what I have read it seems to be similar however I am not sure if my 'case' statements are still able to be used? ...
0
votes
1answer
219 views

converting MFC desktop application GUI in java

I have a MFC based desktop application. Application is whole written in MFC so it is not cross platform compatible Hence i need to make it cross compatible. I thought to convert GUI part into java ...
0
votes
3answers
283 views

Convert code snippet from VB.NET to C#

I have tried a number of freely available code converters to convert the following piece, however without success. Dim resultList = ((From e In p_Xml.Elements() Where ...
1
vote
3answers
144 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 ...
3
votes
2answers
386 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 { ...
0
votes
3answers
587 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
206 views

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

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 ...
5
votes
2answers
217 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) { ...
0
votes
2answers
756 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 ...
1
vote
2answers
226 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
322 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. ...
2
votes
1answer
2k 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 ...
2
votes
2answers
598 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?
0
votes
1answer
382 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. ...
-2
votes
1answer
256 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, ...
0
votes
1answer
254 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 ...
-5
votes
2answers
828 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 ...
1
vote
2answers
652 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 ...
2
votes
3answers
166 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 ...
1
vote
1answer
128 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 = ...
8
votes
4answers
2k 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; ...

1 2