Convert C# Code To Program?
Dec 14, 2009It can be compiled successfully in C#[code]...
Is it the language difference between c# and vb.net?
How can i covert this C# Code to VB.NET Code?
It can be compiled successfully in C#[code]...
Is it the language difference between c# and vb.net?
How can i covert this C# Code to VB.NET Code?
"Here's the code from kaymaf's first post. I used a website to convert it from C# to VB.Net. If you can't get it to work, post again and we'll try something different."[code]...
View 6 RepliesI need to convert following code block from C# to VB.NET.[code]....
View 4 RepliesThis is code in vb.net
Protected Overrides ReadOnly Property CreateParams() As CreateParams[code]...
Convert following code from C to program? I have a feeling it would be pretty simple.[code]..
View 1 RepliesHow do I convert the below PHP code to VB.NET?[code]...
View 4 RepliesCan I convert my VB code to C++? [code]....
View 2 RepliesConverting the below vb code to java..[code]...
View 2 RepliesI have a program that belongs to vb windows form application and i want to make the program in vb class library[code]...
View 3 Repliesi'm still at the beginner level in vb.net..i want to know...how to convert my program/code/file to execute files?
View 1 RepliesI am trying to make a simple program to convert ascii in its code format
Example: Chr(53) & Chr(53) & Chr(54) & Chr(100) & Chr(52)
to a readable format. I understand that this can be easily accomplished by writing in the ascii code into the code will do it but I am trying to create a more interactive method of doing it so I can copy and paste a long length of code into a textbox and have it update a label with the conversion.
I am creating a bulk media converter. In order to do this I need to go through each line in a list box one after the other and run the conversion function. I am trying to use the following:
For Each item In listVideos.Items
conversion code
Next
However this makes the program want to convert all videos at the same time... is there anyway to get the program to convert one video and then after the conversion code is completed to move to the next one?Should also be noted that I am using FFMPEG for this project.
my project was intially mandated to be done in c#.however a large contributor to the project wrote much of the business logic, which he knows well, in vb.net.How difficult would it be to convert the following c# code into vb.net.
[Code]...
i recorded the following macro in excel 2007:
[Code]...
This code was posted in Chit Chat and everyone is saying how great it is. I just have Visual Studio 2010 and no familiarity with VB6 so I thought it would be good to convert the code to Visual Basic 2010.
[Code]...
Dim wiaManager As WiaClass = Nothing ' WIA manager COM object
Dim wiaDevs As CollectionClass = Nothing ' WIA devices collection COM object
Dim wiaRoot As ItemClass = Nothing ' WIA root device COM object
Dim wiaPics As CollectionClass = Nothing ' WIA collection COM object[code]....
I had the following code:[code]How can I convert this code to listbox code? Because the above code is using datagridview but I would like to change it to listbox.
View 1 RepliesThis is going to be a lot to ask, but I'd like to convert my old GW-BASIC program to a command line program with arguments. I'd like it to operate as follows:
elapse [drive:][path]filename This is my old code.
5 CLS
10 OPEN "G:Calc.txt" FOR INPUT AS #1
20 WHILE NOT EOF(1): INPUT #1, A$, B$
30 IF MID$(A$,3,1)=":" THEN C$="DOUBLE DIGIT":GOTO 50
40 IF MID$(A$,2,1)=":" THEN C$="SINGLE DIGIT":GOTO 120
[Code]...
the equivalent code for the following c# codepreviousRow.Cells[cellIndex].RowSpan < 2 ? 2 : previousRow.Cells[cellIndex].RowSpan + 1;
View 4 Repliesconvert both windows as well as web applications to the latest versions.there is any free VB6 to VB.Net Converter which can convert all code. And also let me know if there is any good way to manually convert VB6 code to VB.Net code.
View 2 RepliesI have a few questions reguarding converting a Access program to a sql/vb.net program. I know these are vague questions, so feel free to give vague answers.
NOTES: I have a solid unstranding of SQL and VB.net. i have little Access experience, but i would be working with the individual who created the access program. I also don't have alot of experience in converting on program from one language to another. Most of my experience is in new programing.
[Q1] Is their a general rule of thumb when converting/recodeing on how long it should take? i.e. if this project would take me 40 hours to write my self from scratch it would take me 30 hours to recode into another language?
[Q2] What type of problems do i need to look out for when working on projects of this nature and being inexperinced?
I have developed some programs for processing and issue-coding electronic documents. I am teaching myself how to work with SQL Server because I want these programs to work with electronic documents imported into SQL Server as opposed to messing around in a folder stuck on the desktop, for example. From there I want to expand on the program so that it is a network enabled program.
[Code]...
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.
View 3 RepliesPublic Function ToBase36(ByVal IBase36 As Double) As String
Dim Base36() As String = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J",
"K", "L", "M", "N", "O", "P", "Q", "R", "S", "T",
"U", "V", "W", "X", "Y", "Z"}
Dim v As String
[Code]..
I Need Convert This Code To .net (C# or VB.net)I Need Convert This Code To .net (C# or VB.net)
word CalCRCCCITT(word val,byte data8)
{
byte tmp,i;
word CRC;
tmp = (val>>8)^data8;
[code]....
i am trying to convert the following code to vb.net but online converters return error. Could any body help please?
JohnKenedy.BusinessSQLEXPRInstaller _ins = new JohnKenedy.BusinessSQLEXPRInstaller(
"<Installation Display Name>", "localhost",
"<New database instance name>", "<new database name>", "<database password>",
"<database backup filename>");
[code]...
private void Form1_Load(object sender, EventArgs e)
{
//// if you want to generate a click event for all submenu of a specific main menu
//foreach (ToolStripItem subMenu in allMailFieldsToolStripMenuItem.DropDownItems)
//{
[CODE]....
Anyone can convert this from C# to VB.Net ?
Checked='<%# iif(eval("isActive")="True","False","True") %>'
What is the equivalent in c# for asp.net? I have tried my best to convert it but i could not.
using System;
using System.Web;
///*****************************************************************************
/// <summary>Open Web page and set Window attributes using Javascript</summary>
[code].....
I trying to convert this C# code VB.Net. its giving syntax error.
C#
@{
var grid = new WebGrid(source: data,
defaultSort: "name",
[code]....