I'm a new developer and am planning to write an application for church office administration. It would keep track of facility usage, payroll, members, attendees, donations and general accounting. I've looked into a couple different languages and have narrowed it down to J# or Omnis Studio (Omnis.net), which appears to be underdeveloped.
However, I'm having trouble finding resources (in print or electronic form) for J# and learning it looks fairly tough. Should I buy a book on Java to learn J# Can I build the type of software that I'm trying to in VJ# 2005 Express B2 Thanks in advance for the timely responses.

J# Books & Questions
HaseXXXXXL
ThrasherNYC
You might want to take a look at following resources to learn about VJ#
- Book- Visual J#. NET by John Sharp, Andy Longshaw
- http://msdn.microsoft.com/vjsharp/downloads/codenotes/default.aspx
- http://msdn.microsoft.com/vjsharp for any Vjsharp related information.
Thanks,
Tesfaye
David Collie
J# is pretty stable language to use, it is now going towards its third release Visual J# 2005.
You can learn more about J# product overview at
http://msdn.microsoft.com/vjsharp/productinfo/overview/default.aspx
Cheers,
Varun
EDstyler
You might be interested in our new converter, Instant J#, which converts VB.NET code to J#. You can download a free demo at www.tangiblesoftwaresolutions.com. This will allow you to translate any resources or samples you find that are coded in VB.NET.
Regards,
David Anton
www.tangiblesoftwaresolutions.com
Home of:
Instant C#: VB.NET to C# Converter
Instant VB: C# to VB.NET Converter
Instant J#: VB.NET to J# Converter
vinod123
The big question: Should I begin developing in beta 2 of J# or wait until its release in September
Do you have an MSN Messenger ID to chat
Note: I found this tutorial online which appears to be pretty helpful from a noob standpoint: http://www.functionx.com/jsharp/Lesson01.htm.
Marcus2828
You can start developing in J#. No need to wait for final release. The current beta2 version of J# is strong enough to start any kind of development.
For J# samples you would like to go through this link ... This link has got few good samples on data management.
For any questions, feel free to drop a mail on this forum. We will try to address the issue with minimum possible delay.
Thanks.
gunnarD
J# is stable as far as I've seen - it's just a little annoying if you're used to some niceties such as enums, properties, member calls on primitives, etc. However, there's something to be said for it's extreme simplicity - it's the simplest language I have seen. If you're a "less is more" kind of developer, then J# may be for you.
David Anton
www.tangiblesoftwaresolutions.com
Home of:
Instant C#: VB.NET to C# Converter
Instant VB: C# to VB.NET Converter
Instant J#: VB.NET to J# Converter
Moshik
J# 2.0 (Shipped with visual studio has support for both enums and properties). Here is a sample enum declaration/use in J#...
public enum Color
{
Red,
Blue,
Green
}
Color bookColor = Color.Red;
To know about properties in J#, please refer following blogs of mine :)...
http://blogs.msdn.com/jaiprakash/archive/2005/10/25/484547.aspx
http://blogs.msdn.com/jaiprakash/archive/2005/10/27/485551.aspx
http://blogs.msdn.com/jaiprakash/archive/2005/10/27/485524.aspx
For any other question/issue with J#, please drop a post here.
Thanks.