Tagged Questions
J# programming language is a discontinued transitional language for programmers of Java and Visual J++ languages, so they may use their existing knowledge and applications on .NET Framework.
51
votes
12answers
23k views
Comparing two byte arrays in .NET
How can I do this fast?
Sure I can do this:
static bool ByteArrayCompare(byte[] a1, byte[] a2)
{
if(a1.Length!=a2.Length)
return false;
for(int i=0; i<a1.Length; i++)
...
35
votes
11answers
18k views
Big integers in C#
Currently I am borrowing java.math.BigInteger from the J# libraries as described here. Having never used a library for working with large integers before, this seems slow, on the order of 10 times ...
17
votes
3answers
1k views
Are there any conversion tools for porting Visual J# code to C#?
Are there any conversion tools for porting Visual J# code to C#?
10
votes
8answers
995 views
Is there a real benefit of using J#?
I just saw a comment of suggesting J#, and it made me wonder... is there a real, beneficial use of J# over Java? So, my feeling is that the only reason you would even consider using J# is that ...
6
votes
4answers
5k views
How can I use JavaScript within an Excel macro?
There’s a really cool diff class hosted by Google here:
http://code.google.com/p/google-diff-match-patch/
I’ve used it before on a few web sites, but now I need to use it within an Excel macro to ...
4
votes
3answers
1k views
Killing all threads that opened by application
I have some really big application mixture of c# and j#.
Sometimes when I close it, there are some threads that are not closed and they are hanging in the task manager and it is impossible to kill ...
3
votes
2answers
3k views
visual j# not working in .net 4
I tried to convert a project that relies on the vjs runtime to vs2010, but it errors out when trying to run. It's giving the error that "Could not load file or assembly 'vjslib' or one of its ...
3
votes
3answers
409 views
Problems porting Java to J#
I've got a medium sized (25k lines code, 25k lines tests) codebase in java, and would like to port it to run on a CLR as well as the JVM.
Only the main class, and a few testing utilities deal with ...
2
votes
1answer
33 views
C#/J# Find function by name / Manual control click
I have a control which is a button and I want to manually click it. (When the user presses a button)
I have the control but I don't know how to get it's function. (The format of the click function is ...
2
votes
3answers
470 views
Arbitrary-Precision Decimals in C# [closed]
Possible Duplicates:
Big integers in C#
C# unlimited significant decimal digits (arbitrary precision) without java
I read the question at Arbitrary precision decimals in C#? but I don't ...
2
votes
3answers
157 views
C#, J# and VB.NET is it possible to write a class in each and make its variables interact in one application?
I was asked this question in an interview would appreciate your answers.
Regards;
Mohammad Mohsin
2
votes
3answers
554 views
Why was J# not supported in VS 2008, is the language dead?
Has MS given up on J# ? We integrate with software currently through a J# assembly. Does anyone know if it will be/is supported in 2010?
1
vote
1answer
31 views
J# Object Reference
I Wanted to convert a c# code to j# and somehow managed to get over dllimport and marshalas.
Problem is, when a function has a reference to an object - ref isn't recognized
public static native ...
1
vote
2answers
85 views
What could cause FileStream to read 0 bytes from an apparently locked file?
I have a 'pack files' method, written in J# that takes a bunch of files and writes them all into a stream, along with some enough metadata that they can be reconstructed as individual files by a ...
1
vote
3answers
212 views
What is the difference between J# and C#
I have been reading around about people using J#.
But my question is:
What is the difference between J# and C#?
OK, my understanding of J# is like C# but in Java. Am I correct in that?
Was J# before ...
1
vote
2answers
985 views
How to get J# to work with VS 2010 and .NET 4
I have program in Java that I want to rewrite (GUI and some new features). I want to rewrite it in C# (mostly because of is easier to write GUI in it).
As the core of the program is large and is ...
1
vote
3answers
170 views
Can C++.NET and J# be used to make a website?
I didn't see an option to create a web site in the c++ area. Is there a way around this or am I just stuck with C# and VB.NET
1
vote
3answers
2k views
Visual Studio registry capture utility has encountered a problem
I recently reinstalled my development machine and went from 32 bit Windows Vista to 64 bit Windows 7. I'm running VS2008.
Some of my .NET applications still use J#, which now causes problems. The ...
1
vote
2answers
305 views
Deploying assembly normally in the GAC with my project?
I built a web application that uses the J# libraries which works fine in my cpu, however, when I deploy it to my shared server. I get an error message: Parser Error Message: Could not load file or ...
0
votes
0answers
10 views
Compliling a Java Applet to a J# Browser Control
Is there any way to complie a Java Applet to a J# Browser Control in Visual Studio 2008?
Any help will be appreciated
0
votes
0answers
23 views
Turn j# applet to winform user control
I have a java applet written in J#
Is there any way to turn this applet into Winforms Custom Control?
0
votes
5answers
179 views
F# and J# are they same?
I see an F# compiler with MS Visual Studio 2010, I heard about J#, are they the same thing?
0
votes
0answers
170 views
j# from .net 4.0 application for zip files [closed]
Possible Duplicate:
visual j# not working in .net 4
I had a zip utility that I wrote with some java classes (j#) and now they're not working.
I installed the java redistributalbe and after ...
0
votes
1answer
341 views
Microsoft Visual J#® 2.0 Redistributable Package for x64 and x86
Is there a version of Microsoft Visual J#® 2.0 Redistributable Package which will support both x86 and x64 platforms?
In the download center, i found only different dlls for both platforms!!!
0
votes
2answers
36 views
To make development portable to Java, does it make sense to do the whole development on J# vs C#?
To make development portable to Java, does it make sense to do the whole development on J# vs C#? What happens to missing bits in Java that exist in C# like lamda expression and so on?
What is the ...
0
votes
1answer
291 views
J# runtime needed in visual studio 2010 setup project
I have some code I needed to merge into my project where some developers had used the J# runtime to handle a few things. The application is running, but now I am trying to build an installer. I've ...
0
votes
2answers
135 views
What is the reverse operation of bitwise AND?
How can I get a from b and c? What would be the reverse operation?
Here is the code:
class s
{
public static void main(String ar[])
{
int a = 20;
int b = 5;
int ...
0
votes
2answers
323 views
How to get an int value out of textbox in Visual Studio 2005
I'm a decent programmer in Java, but all my classes use eclipse so this Christmas I wanted to play around with Visual Studio so that I could build actual GUI's. So I downloaded Visual Studio 2005 ...
0
votes
1answer
78 views
J# collection to VB .NET collection
I have a series of API calls that are returning J# data types. I have been able to convert most of the data types (Integer, Boolean, Double, Float, etc) just fine.
What I need to do now is convert a ...
0
votes
1answer
136 views
Can j# be used to provide jdbc functionality to an asp.net mvc application?
I have a service which exposes a JDBC interface ("yolus"/"ion arc" if anybody is familiar), and i'd like to be able to commincate with it from .net.
I'd rather not use an ODBC-JDBC Bridge, it's a ...
0
votes
1answer
38 views
Distribute .NET Application that uses J# without J# framework
I have an ASP.NET website that uses one of J# redistributable library. Is there a way to deliver this website to the client (which has .NET framework installed, but not J# Framework) without forcing ...
0
votes
1answer
130 views
Check if J# framework installed
I have a VB.NET 2008 (FW 3.5) app with J# 2.0 as a prerequisite.
For some problems I have to check during runtime if this framework is installed.
How can I do?
Thanks
Alessio
0
votes
0answers
511 views
Add J# to VS.Net 2008
Can I add J# to the VS.Net 2008 IDE... I've got some old J# code to maintain (just until we port it over to C#).
0
votes
1answer
79 views
Does referencing the JDK namespaces from within a .NET application require the Java runtime to be installed?
I'm in a VB.NET application. I have referenced some java.* namespaces in my file and am utilizing objects and methods from this namespace throughout the code. Presumably this is relying upon J# to ...
0
votes
1answer
165 views
modPow slow in Visual J#?
Needing a quick way to build an ActiveX control out of some Java code, I tried out Visual J# Express.
Ran into a limitation, though, when I found that BigInteger.modPow is really slow, and since my ...
0
votes
1answer
2k views
Can I just drop vjslib.dll into the /bin directory of my application?
I am in the middle of a production deployment. Unfortunately I am deploying to a tightly controlled environment. It is unlikely I'm going to get clearance tonight to run the full Visual J# ...
0
votes
2answers
1k views
Where can one acquire the Visual J# Merge Module for use with Visual Studio 2008?
I've inherited an application which depends on a third-party library, which in turn depends on Visual J#.NET.
The application was previously being developed on Visual Studio 2005, and I've got it ...
0
votes
2answers
204 views
Can J# code run on JVM
If I create a J# Application is there any way I can execute it on JVM as well
-1
votes
2answers
42 views
J#/C# Update/Refresh GUI Thread
I have a function that simply fills a progress bar.
private void FillProgressBar(ProgressBar bar, Color c, int percent)
{
int steps = 10;
bar.set_Value(0);
for (int i = 0; i < percent ...