VS 2008 Translate Some Java To .Net

Feb 12, 2010

translate some Java to VB .Net.

Java code here:

import*java.awt.Color;
import*java.awt.Graphics;
import*java.awt.Graphics2D;

[code]....

Here is a image of the program running.I have attached a DMap file. Make sure you rename it to .DMap before testing it.

View 4 Replies


ADVERTISEMENT

Translate Program Lines Into Java?

Apr 7, 2011

how to translate some VB.net program lines into Java? I made some jLists but I don't know how to show files like I did in VB.net.

View 3 Replies

VS 2008 How To Translate API Function Declaration

Mar 9, 2010

API is written in C++

typedef unsigned short MFSTATUS; // known as a WORD - 16 bits for sure
MIFAREAPI_API MFSTATUS MIFAREAPICC MF_ReadCardBlock( DWORD dwBlkAdr, DWORD dwRdrKey, DWORD dwKeyAB, DWORD dwRspBufSz, BYTE *pRspBuf );

HOW DO I TRANSLATE IT TO VB?

Declare Function MF_ReadCard Lib "MifareAPI.dll" Alias "MF_ReadCardBlock" (ByVal BlkAdr As Long, ByVal RdrKey As Long, ByVal KeyAB As Long, ByVal BuffSize As Long, ByRef buffer As Byte()) As Short

View 4 Replies

VS 2008 Translate C# Linq Expression?

Nov 28, 2010

translation of the following C# Linq Expression (in VB.NET 2008):

syncContext.Send((obj) => eventToBeFired(this, new EventArgs()), null);

Is used in this subroutine:

private void FireEvent(EventHandler eventToBeFired)
{
if (eventToBeFired != null)
{

[code]....

View 3 Replies

Convert Java Class To Vb 2008 Application?

Oct 29, 2009

I wrote a Java class that parses a bpel text file and then returns a count of the number of occurences of certain words. I wanted to convert it to VB2008 Forms application, so that its results are displayed in a TextBox and not on the console. The problem is that VB2008 lacks Scanner and StringTokenizer classes, which are in my current Java class. Am not sure how to get the same functionality (or better) in VB2008. Can someone out there help to convert this class.

[Code]...

View 1 Replies

VS 2008 Reversed File Format (Java)

Jun 27, 2011

I discovered that java uses a reversed way of storing data. For example, the integer value 2 has the following byte values:

In "Windows" format:
[2] [0] [0] [0]
In "Java" format:
[0] [0] [0] [2]

The binary readers of both languages seem to use the same different format. Now my question: What is the easiest way to read binary values (Integer, Single, etc.) in VB .NET from a java formatted file? I already made functions like these:

[Code]...

View 5 Replies

VS 2008 Run Java While Using A Custom Made Web Browser?

May 14, 2009

is it possible to run java while using a custom made web browser?what i mean by run java is when you play a game that is an applet, a jar file.Like runescape. When I try playing runescape with my browser, it dosen't let me, and says i don't have java. (the browser I made in VB)

View 3 Replies

VS 2008 VB And IKVM Calling Java Namespaces But Failing To Recognize All Namespace Members?

Mar 29, 2009

[URL] The jist of the problem is in fact that in the weka.classifiers.trees namespace you have the following members:

namespace weka.classifiers.trees.j48

and

public class J48 : weka.classifiers.Classifier (Member of weka.classifiers.trees)

Lamentably VB .NET in VS 2008 does not seem to be smart enough to distinguish betweem the two (which is odd, because there is no such problem in VS 2003, or in C# in VS 2008) because of it's lack of case sensitivity. Or possibly because of the fact that ikvmc emits an assembly compiled for the 1.1 run time... I'm not sure. I'm also not quite sure how you would resolve this particular issue and given the time sensitivity of this project I do not have the time to learn C# or Java to an extensive degree.

View 1 Replies

.net - Translate From C# To VB?

Mar 23, 2010

How do you convert the following c# code to vb.net?

[Code]...

View 3 Replies

Asp.net - How To Translate Into C#

May 5, 2012

I have found aa solution to a problem in one of my reports but its in VB.NET and I am not sure how to convert it to C#, I tried to do it online with one of the tools but it cant determine the events been used or something like that. If there is anyone savy at both languages maybe you can help me figure out its translation?

Here is the VB code:

Private Sub XrLabel1_BeforePrint(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintEventArgs)
Handles XrLabel1.BeforePrint

CType(sender, XRLabel).Tag = GetCurrentColumnValue("ID")

[CODE]...

I tried to convert it on this site [URL]

THE ORIGINAL CODE IS FOUND HERE [URL]

View 2 Replies

Translate .net To Vb6?

Jul 8, 2009

How can i translate this code to vb6? i have already searched in google for translators, but with no success;.

Private Sub CallFunction()
If Me.bOn Then
Me.connectionString = String.Concat(New String() { "Server=", Me.strIP, ",1433;Network Library=DBMSSOCN;Database=rPTDB;UID=", Me.strUser, ";PWD=", Me.strPassword, ";" })

[code]....

View 24 Replies

Translate From C# To VB?

Oct 30, 2010

I have this little function for forcing a download of MP3 files. I have it integrated into my VB app but would like it to be converted from C# to VB so that I can use other functions in my APP_Code directory.

[code]...

View 4 Replies

How To Translate Eglish Into VB

Apr 11, 2012

Is there an English - Visual Basic dictionary thae translate my thoughts to code? I am taking courses at the local community college and having difficulty with this "foreign" language.

View 4 Replies

Translate C# To Program?

Jan 28, 2010

Translate c# to program?[cod]e...

View 1 Replies

Translate Code From Vb6.0 To .net?

Oct 12, 2010

I have found the following code which can get the harddisk no in VB6.0.I would like to translate it into vb.net code.I have tried the auto upgrade function in vb2005 and translated the following code to vb.net, but the outcome did not run probably.Can anyone give me some help to translate the following VB6.0 code into vb.net code?

[Code]...

View 2 Replies

Translate For Loop Vb To C#?

Oct 26, 2011

I am currently trying to use a vb function in c#, i have to translate the following from vb to c#:

For index = LBound(CollectionChannelPanel.EkItems) To UBound(CollectionChannelPanel.EkItems)

View 2 Replies

Translate The Following Code To VB

Mar 11, 2009

I need a hand with something i need to translate the following code to VB...

[Code]...

im having some difficutly with syntax etc.

View 5 Replies

Translate The Snippet To VB?

Feb 1, 2010

I am looking at this blog, and I am trying to translate the snippet to VB.

I'm having difficulties with this line:

NotifyCollectionChangedEventHandler handlers = this.CollectionChanged;

NOTE: CollectionChanged is an event of this ('this' is an override of ObservableCollection<T>).

View 3 Replies

Translate This C# Code In Vb?

Oct 10, 2010

public void Attach()
{
deviceHandle = capCreateCaptureWindow(string.Empty, WS_VISIBLE | WS_CHILD, 0, 0, (int)this.ActualWidth -150, (int)this.ActualHeight, new WindowInteropHelper(this).Handle, 0);
if (SendMessage(deviceHandle, WM_CAP_DRIVER_CONNECT, (IntPtr)0, (IntPtr)0).ToInt32() > 0)

[code]....

View 6 Replies

Translate To Pig Lating

Jul 17, 2011

So, I'm taking Intro to Programming and I'm working through the exercises in a chapter about String Manipulation and the For Next loop.We haven't gotten to arrays yet, so I'm trying to do this just with what's been covered.The exercise is to translate a word into pig latin.If it begins with a vowel, you add "-way" to the end of the string. If it doesn't, you add "-" and then the first character to the end until you reach a vowel and "ay" to the end of that. So "Chair" would become "air-Chay".[code]

View 4 Replies

Translate VB Codes To C++

Jun 18, 2010

I am trying to translate some VB codes to C++. And I am not quite sure what this line does.

IIf (n& 1=1, 0.0005, -0.0005)

I know what IIf(logic, true_value, false_value) does, and I guess the & operator is supposed to concat two strings. But I am not sure what the intention of using "n & 1 =1".

View 6 Replies

VS 2005 Translate From C#

Feb 9, 2011

I need to translate this C# code in VB.NET 2005:

[code]...

View 7 Replies

What Does & H57 Represent And How To Translate It For C#

Jun 1, 2011

I'm trying to convert old VB.NET code into C# and I'm not sure about the current line and what it means really.

[Code]....

View 5 Replies

.net - Translate COM Error Codes In C#?

Jan 7, 2011

In C, Pascal, and C++ it is possible to use the FormatMessage function to retrieve a "friendly" error message that corresponds to a COM HRESULT error code. This question contains sample code that demonstrates the C++ approach. Of course it would be possible to build a managed C++ assembly to perform this function for C# and VB.NET code, but I'm wondering: is there a way to translate COM error codes using the .NET system libraries?

View 2 Replies

.net :: Translate Database Strings?

Jun 14, 2011

I have an application written for the UK market that currently only supports English (UK) and a client wants to deploy part of the application out to a non UK site and syncronise the data back to the UK HQ.I can convert the application labels and messages using resource files and the loc culture information but was wondering how you would convert the database bound data.E.G.Here is the HQ based table

tblFault
ID ; Description
1 ; Not Functional

[code].....

View 3 Replies

Communications :: Translate From VB6 To VB 2005?

Aug 7, 2008

I have a module written in VB6, but I need this modue in VB 2005, how to translate the code in the VB 2005, or if you have time to translate the module in vb2005

Code:
Attribute VB_Name = "FiscalModule"
Public Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (ByVal dest As Long, ByVal source As Long, ByVal bytes As Long)

[Code].....

View 3 Replies

For(typeof(IRepository<>)) Translate In C# To Vb?

Jul 12, 2010

I've got a method I'm trying to translate from c# to vb, goes something like this .. x.For(typeof(IRepository<>)).Use(typeof(Repository<>)); VB doesn't seem to like the idea of a IRepository(Of ) ... what's the syntax on that?

View 1 Replies

How To Translate This Code From C In Basic

Oct 26, 2009

I have this code in c:

void Back()
for(i=1;i<=n;i++)
cin>>a[i]; 'display vector a[i] a[i] is a vector with 10elements
while(k>0) 'while k is greater than 0

[Code]...

View 4 Replies

Translate A Ternary Operator Into VB?

Feb 24, 2010

I'm usually reasonably good at translating C# into VB, but I'm a bit stuck partially due to the ternary operator in this function and also because I don't fully understand what is happening with the "from x in dataSource.OfType<object>() select 1).Sum()"

[code]...

View 7 Replies

Translate Code Snippet From C#

Sep 29, 2011

I need to translate line 4 in the code snippet below into VB. For some reason I cannot get this done tonight. I am either too tired or having a brain drain.[code]

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved