Software Development Network Logo
  • Visual Studio
  • Visual C++
  • Game Technologies
  • VS Team System
  • Windows Vista
  • Windows Live
  • Visual FoxPro
  • Visual J#
  • Smart Device
  • .NET Development
  • Architecture
  • Microsoft ISV
  • Visual C#
  • SQL Server
  • VS Express Editions

Software Development Network >> Visual J#

Visual J#

New Question

Running a Simple Program in J#
Reference to vjslib.dll fails after RTM Framework 2.0 installation
Running a Simple Program in J#
how can i remove the security warning in VJ#
Unable to load the J# Browser Control
Problem with C++/CLI and J# interaction bug
jar API into J# Express - where do I find Visual J# Binary Converter Tool (JbImp.exe)
How do I create an exe file or a jar file from J#?
J++ running on Window 2003
Access Database

Top Answerers

Hans Malherbe
Vicki
DaNet
GIScoobe
tlin5043
Alexander75
David Scherf
John Kennedy
Mrhaboobi
Murray Sobol
Celit
Only Title

Answer Questions

  • Soumitra Sengupta a String "contains" method

    Hello, I am new to J#, migrating from Sun's java. I want to do something simular to this in J#: String dayList [] = {"good day", "bad day"}; for (int a=0; a<2; a++) //iterate through the 2 Strings if ( dayList[ a ].contains( "good" ) ) //if the String contains "good" System.out.println(dayList[ a ]); I do not see a method " contains( String s ) " in ...Show All

  • Kirk G String to int

    Hi, Say I have a String that equals "9+9". Is there anyway that I can make the computer do that calculation and store the answer into a double or integer value What I mean is, is there some method that would take a String, read it, and do the calculation that the String value contains Thanks! There is no ready method that would parse string "9+9" to an equasion. you must write it yourself ...Show All

  • Ben Jackson33513 which version of JDK is J# 2005 compatiable with?

    I am not talking about web service, applet, nor enterprise. but about plain java applicaitons with file access and Gui user interaction, text classes etc. Some people said J# 2005 is JDK 1.3 compatiable. Is that true Does it have swing classes  I would stil be happy even if the GUI user interface is more windows like than Java, so long it just works.  That also applies to file dialogs. What about jdk 1.42 ...Show All

  • Asok Babu Cannot find type 'javax.swing.JEditorPane'

    Hi all, I have added a reference to VJSSupUILib.dll to my Visual J# project, but it cannot find the type javax.swing.JEditorPane. It can successfully find the others such as: javax.swing. JButton javax.swing. JOptionPane javax.swing. JScrollPane etc. How can I add this missing type to my project Is it stored in a different DLL perhaps Thanks in advance! Adam I ...Show All

  • David_Som MySQL Managed Providers

    Is this what I should be using with a MySQL database   http://sourceforge.net/projects/mysqlnet/ My application is a for church management and consists of numberous fields for data entry.  How do I go about connecting the app. to a database (of any kind)   Do I use datasets Thanks! Hi, Yes you are on the right track ByteFx.Data has been acquired and made as the official managed provider for ADO.NET For Connecting to a data ...Show All

  • Ronim5 ResourceBundle

    I am having trouble figuring out where to place my resource bundles inside my asp web site.  My J# class file is in: \Visual Studio Projects\WebSites\view\App_Code\com\systems\test\rbw.jsl In rbw.jsl I do: resourceBundle = ResourceBundle.getBundle("login", new Locale("en", "us")); I've placed a "login.properties" file and a "login_en_US.properties" in a bunch of different file locations and I always get a "Resource Bundle not Found" e ...Show All

  • Jim Townsend Problem with C++/CLI and J# interaction bug

    I'm having a problem with C++/CLI and J#. I am writing a class library in C++/CLI and want to use it from J#. I narrowed down my code and wrote a repro: a.cpp: #using <mscorlib.dll> #include <stdio.h> using namespace System; namespace AA { public ref class A { public : unsigned long Print() { printf( "Hello\n" ); return 0; } }; } b.jsl: import System.*; import AA.*; public class Test { public static void main( Stri ...Show All

  • Magpie Could not load file or assembly - vjscor...

    Hi; I just installed .net 2.0 and vjsredist on my server. Now when I try to start my asp.net app, I get: Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Could not load file or assembly 'vjscor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' ...Show All

  • Jams1999 Rebuild Issue with Object Test Bench

    I am able to create an instance of a class in the Object Test Bench.  But everytime I attempt to invoke a method (even an empty void method) of the class, the tool asks me to rebuild it, after which it resets the class and does not execute the method.  It does this even though I have not modified the code in any way.  I try to execute the method right after I create the instance. This seems to happen if you have multiple projec ...Show All

  • spotl Problem with C++/CLI and J# interaction bug

    I'm having a problem with C++/CLI and J#. I am writing a class library in C++/CLI and want to use it from J#. I narrowed down my code and wrote a repro: a.cpp: #using <mscorlib.dll> #include <stdio.h> using namespace System; namespace AA { public ref class A { public : unsigned long Print() { printf( "Hello\n" ); return 0; } }; } b.jsl: import System.*; import AA.*; public class Test { public static void main( Stri ...Show All

  • Sticky5011 How do I remove a package downloaded by mistake?

     Hi and thanks for your help.  I have already gone to the Add/Remove and it isn't listed.  I also checked the Windows components and couldn't find it there either. I downloaded: Microsoft Visual J #.NET Redistributable Package 1.1 and my computer doesn't have enough memory to allow me to open my e-mail.  I have done everything I know to do to increase my memory, but it hasn't worked.  I know I need more memory anyway ...Show All

  • Bigbyte Pet peeve of the day

    Hi; In the project properties, Application tab, Startup object, could you please put these in alpha order I have about 18 programs and it's a pain having to find one as they are listed in random order. thanks - dave Hi David, Thanks for reporting this issue. This issue repros for C# also and we will be fixing it. Thanks. ...Show All

  • JD-SSan Access SQL Server from J#

    Hi, I'm triying to make a visual java project that includes a SQL server database and I don't know how. It's the first time I do that. I have made the SQL database, but I don't know how initiate the connection with it. Thanks to all Hi, If you are working on J#, then in visual studio there is "Data" menu in main menu bar (you can see it if you create a windows application). From this menu click on  "Add new Data Source" to bring ...Show All

  • topnotch String to int

    Hi, Say I have a String that equals "9+9". Is there anyway that I can make the computer do that calculation and store the answer into a double or integer value What I mean is, is there some method that would take a String, read it, and do the calculation that the String value contains Thanks! No. There is no ready method that would parse string "9+9" to an equasion. you must write i ...Show All

  • Christineeve is there a way to include SWT

    is there a way to program SWT inside VJ#, if yes how do we include the JARs in the classpath and where do you provide classpath etc.... am new to VJ# correct me if am wrong anywhere in my question please do correct me. Hi, J# doesn't suppport SWT. It supports functionality equivalent to swing. You may like to check javax.Swing.* packages of vjssupuilib.dll. Please let us know if you need any he ...Show All

686970717273747576777879808182838485

©2008 Software Development Network

powered by phorum