Visual J#: Getting Started with 2005 Express Edition Beta

  • Thread starter UrbanXrisis
  • Start date
  • Tags
    Visual
In summary, the conversation is about a person who is new to using Visual J# and is struggling with compiling their code. They have used BlueJ for compiling Java in the past but are now trying to use Visual J# 2005 Express Edition Beta. They are asking for help and suggestions on how to compile their code and are also looking for a basic code to compare their code with. The conversation also mentions a specific code that was not able to compile under Visual J# and the person is seeking advice on how to achieve the same result with J#.
  • #1
UrbanXrisis
1,196
1
I'm new to using Visual J# and I have not a single clue of how to use it. I've been using BlueJ for compiling Java but I'm tring J# now. I have Visual J# 2005 Express Edition Beta all up and running, now I want to compile something but I don't know where to begin. I tried to compile something but the debugger always tells me that "No source file supplied." Does anyone have some basic code that I can compaire my code with or any hints to help me out in this situation? Thanks
 
Computer science news on Phys.org
  • #2
For example, I could not
get this code to compile:

class program5 {
public static void main(String args[ ]) {

int result=1,digit=1;

do {
if (digit<7000){
System.out.print("2 to the power of "+digit+" = "+result+"\n");}
result=result*2;
digit++;
}while (result<70000);

}
}

This compiles of course under Sun Java. How do I do the same with J#?
 
  • #3


Hello,

First of all, congratulations on getting Visual J# 2005 Express Edition Beta up and running! It can definitely be overwhelming to learn a new programming language, but with some practice and patience, you will get the hang of it.

To start compiling something in Visual J#, you will need to create a new project. You can do this by going to File > New > Project. Then, select the type of project you want to create (for example, a console application or Windows Forms application). Once you have created your project, you can start writing your code in the code editor.

If you are not sure where to begin with your code, I would recommend starting with some basic tutorials or exercises to get familiar with the syntax and structure of Visual J#. You can also refer to the documentation or online resources for help and examples.

As for the "No source file supplied" error, it could be because you have not added any source files to your project yet. Make sure to add your code files to the project before trying to compile.

I hope this helps and good luck with your learning journey! Don't hesitate to reach out for further assistance. Happy coding!
 

FAQ: Visual J#: Getting Started with 2005 Express Edition Beta

What is Visual J#?

Visual J# is a programming language and development tool that is part of the Microsoft Visual Studio suite. It is designed for creating applications that run on the Java Virtual Machine (JVM), and it is mainly used for developing Java applications on the .NET Framework.

What is the 2005 Express Edition Beta?

The 2005 Express Edition Beta is the initial release of Visual J# 2005, which was designed to provide a lightweight and user-friendly version of Visual J# for beginner programmers. It includes all the basic features of the full version, but with a simplified interface and limited functionality.

How do I get started with Visual J# 2005 Express Edition Beta?

To get started with Visual J# 2005 Express Edition Beta, you will need to download and install the software from the Microsoft website. Once it is installed, you can launch the program and begin creating your first project.

What are the system requirements for Visual J# 2005 Express Edition Beta?

The system requirements for Visual J# 2005 Express Edition Beta are a computer with at least a 1 GHz processor, 512 MB of RAM, and 2.5 GB of available hard disk space. It also requires Windows XP or later operating system. For optimal performance, it is recommended to have a faster processor and more RAM.

Can I use Visual J# to develop applications for other platforms besides the .NET Framework?

No, Visual J# is specifically designed for developing applications that run on the .NET Framework. It is not compatible with other platforms such as Android or iOS.

Similar threads

Back
Top