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

Software Development Network >> Visual J#

Visual J#

New Question

J++ question
Problem with subclassing a form AND J# interface in C# 2.0
Pet peeve of the day
Running a Simple Program in J#
High School Teacher still needs help.
Need help...
litlle problem
[J#] Sending bitmap ... socket communication
java.nio not supported
unable to open C# solution after converting it using JLCA

Top Answerers

M D L
Silly
smtraber
Guennadi Vanine
BennyT
JoseB
d_clare
alehel
rit
Skaladar
Government Auctions Blog Feed
Only Title

Answer Questions

  • M HOWELL J# x64 Support

    Hi my question is: is there any planed support fur x64 in the J# 2.0 Framework i could not find any roadmap ... thanx Oliver Hi Oliver To add to Neela's comments, we have already started an Alpha testing process with our internal bits. We are waiting for the feedback on the same from the participants in this exercise. Thanks With regards Ashwin Raja Hi all, After having faced the s ...Show All

  • kayuWoody Change Decimal Separator

    Hello I have a class that I use to format a double value and return it as a string. I have been having a problem with culture settings that use a comma (rather than period) as the decimal separator. I tried the following : static { System.Globalization.CultureInfo.get_CurrentCulture().get_NumberFormat().set_NumberDecimalSeparator("."); } which causes an exception to be thrown: System.InvalidOperationException: Instance ...Show All

  • MouleeswaranSwaminathan Accessing other Browser Controls from the same page

    Are getApplet and getApplets methods functional Can we establish communication between JSharp Browser Controls on the same page(or on the same page but in different frames) just like we do on Microsoft Java Virtual Machine Thanks Bora Ertung Hi Bora Yes they are supported in J# Browser Controls. Thanks With regards Ashwin Raja ...Show All

  • FlowJam porting Forte projects to j#?

    How to get Forte form to j# I have java applications built in Sun  Forte 3.  Porting the java code is easy. Now I am stuck as to how to import, convert Forte java .form files into J# forms. Is there a way I can import the Forte java  .form  files into J# forms, so I can do the GUI Editing in J# studio as well ( I would very much to avoid the time consuming task of building the forms from scratch) I tried online help, Googl ...Show All

  • ourcupoftea Need help: try/catch using combobox

    I'm attempting exception handling for a combobox. I wish an exception to be raised if the user does not select an item from the combobox, but I'm not sure of the correct code. Here is what I have now: try { if (cboDwellingType.get_SelectedItem().ToString == null); { MessageBox.Show("Please select the Dwelling Type from the dropdown menu."); cboDwellingType.Focus(); throw new Exception ("Error updating Local databas ...Show All

  • Catherine - PRA Setting the datasource of a combobox to an arraylist

    I'm trying to set the datasource of a combobox to an arraylist. The arraylist contains records. The combobox recognizes the number of rows, but is unable to recognize the elements of the record. If you look in the locals window, the datasource for the combobox does know that the source is an array list, and under each index, it does know the name and value of each element, but the box only displays the object name in each row. I've been playing ...Show All

  • Doug Maynard Is it possible to uninstall J 1.1 from Windows XP without having to uninstall everything?

      I downloaded J 1.1 without realizing it was a programming download.  I am NOT an experienced computer person!  All of my system information has been taken over, somehow.  Please Help and Thank You.  I don't even have e-mail access anymore, my memory is gone. well actualy it's safe to uninstall .net framework and J# redist using add remove program, but download and install .net framework and J# is good for y ...Show All

  • James Alexander getResourceAsStream() doesn't work

    Hi; The following code works: System .IO. Stream stream = Class .ToType( SystemWrapper . class ).get_Assembly().GetManifestResourceStream( "resources.resources_en_US.properties" ); This doesn't: java.io. InputStream is = SystemWrapper . class .getResourceAsStream( "resources.resources_en_US.properties" ); Why (SystemWrapper is the class the above calls are in.) thanks - dave Hi; I created a class with no namespace and tried java.io ...Show All

  • TDP How to send authenticated mail (smpt) with j#

    can any1 help me out.... Hi, You can use rich functionality provided by System.Web dll. Below is the sample code in J# to have an idea. Please refer System.Web.dll and import System.Web.Mail package before using it... MailMessage msg = new MailMessage (); msg.set_To( "ABC@msn.com" ); msg.set_From( "xyz@msn.com" ); msg.set_Subject( "Subject" ); msg.set_Body( "body" ); msg.set_BodyFormat( ...Show All

  • Andibacke Answer: java.text.Bidi functionality

    Hi; What .net class has the same functionality as java.text.Bidi (which I assume is not in J#) All I need is the ability to give a method a string and find where the string changes direction. thanks - dave Maybe the following is what you want. http://www.unicode.org/reports/tr9/ There are C++ and Java version. The Java version may work with J#. Uniscribe manages bidirectional character reorderin ...Show All

  • Gethyn 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

  • biriktirici1 How do I create an exe file or a jar file from J#?

    I need to provide someone (a science teacher) with just an exe that they can run. The program prompt for some values, perform calcuations and produces a table of outputs.  They do not have Visual Studio NET installed on their computer.  How do I make an executable in J# Thanks! Mrs. Bellacera If you build your project, an exe will be created in the bin\debug or bin\release folder. You can run this directly, but you will need ...Show All

  • almightylinuxgod CLSCompliant(true)

    Hi; There appears to be no /** @assembly CLSCompliant(true) */ - how do I set this in a J# project thanks - dave Thank you. I think I got so used to the ALT-ENTER in IntelliJ/ReSharper that I forget about this in VS. thanks - dave Hi, It is there for J# also. I guess you are missing following import statement in your code file... import System.*; ClSCompliantAttribute class is defined in System package, so you have to import th ...Show All

  • Dwayne Walters deploying j# runtime

    Hello, i want to create a deployment project in vs2003 for a j# project which automaticaly installs the j#-runtime if it isn't installed on the clients mashine. i already done this with a launch condition. the launch condition forces to run a .bat file which starts the j#-runtimeinstallation and at finish, restarts the .msi again. i want to get rid of the uggly dos-window which pop up when running the .bat file. it would be ni ...Show All

  • Kyle Pawlaczyk Access Database

    Does any one have a sample code working with an MS Access Database Very interesting question someone can help Is their any substitution to old DAO or ADO Thanks for help, a little example should be fantastic. LaurentLD do you get anywhere with the J# Access sample Do you understand it I'm looking for J# sample code... Thanks ...Show All

8182838485868788899091929394959697

©2008 Software Development Network

powered by phorum