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

Software Development Network >> Visual J#

Visual J#

New Question

Need help
Visual J# Express raw Java apps?
VS.NET B2 - Object Test Bench
Can any one give me code or help me set up Microsoft Visual J# to Run Faster
how to create DLL file in J# or convert J++ dll into J# dll
case statement
which version of JDK is J# 2005 compatiable with?
NumericUpDown
axWebBrowser
using J# dll with ASP

Top Answerers

Yhert
mamathathunga
Noodles_is_a_valid_display_name
webguru72
Tim Haynes
Robert Shurbet
Vincent D. - Nolme Informatique
Juney Moon
Ramachandran.d
MCMICKS
Simkin: A Scripting Language for
Only Title

Answer Questions

  • Jason098ma Running a Simple Program in J#

    I created my first application in J#. In the Form1_load procedure I put System.out.println("Hello World"); I build the application. It compiles clean. How do I run it   It's not too obvious.  I did install the J# Redistribution Package.  HELP!  This is so simple.. but I'm stumped!!! Hi, Great to know that you could get it working. Yeah, you can create JOptionPane in J# and J# supports Swing classes. You need to refer vj ...Show All

  • Yaroslav58211 System.out.print and String.length > ~64K bug?

    I have ran into a problem where if a String length is around 63-64K in size the System.out.println method will not print the value of the string. Has anybody else experience this This is code I used to reproduce it. int indent = 70000; int k = 0; StringBuffer sb = new StringBuffer(); for (int i = 0; i < indent; i += 1) { sb.append("a"); if (sb.length() >= 53200+k) { System.out.print ...Show All

  • coolash java.lang.Math.hypot J# equivalent?

    I'm a total newbie to J#, I'm a C# and VB.NET programmer. I know a bit about Java, but not at a professional level, and I need to convert a Java program to J#. The part that I'm stuck on is I need to find a J# equivalent method of: java.lang.Math.hypot Any ideas Also, I need to have the same exact results, not a result that is "close enough and will suffice." Thanks:) Hi, We are not supporting this hypot fu ...Show All

  • PatrickRR axWebBrowser

    I have this problem in vusal j#,  C:\Work\Form1.jsl(92): Cannot find method 'Navigate(String)' in 'AxSHDocVw.AxWebBrowser' I have no clue how to fix this, the program works on my friends comp but not mine, I'm running win xp sp2 with zone alarm security suite installed. Please reply -- Thanks Here's my file version for the shdocvw.dll  6.0.2900.2627 and I'm running xpsp2, but I don't know what version it is. And I'm not sure ...Show All

  • MarceloTallis Adding an Access Connection to Visual J# 2005 Express beta 2

    I have been trying to add a new data source to a J# application under Visual J# 2005 Express beta2 that I downloaded a few days ago. I select the Microsoft Access Database File (OLE DB) and specify a path and the 'Test Connection' button works. However, when I validate, I get the message 'The parameter is incorrect.' Love it.. I have no idea which parameter is involved. I have tried looking at the advanced properties but cannot see anything unus ...Show All

  • Alexei Pavlov aka BlackTiger Create Class Designer values

    I’ve created a class in the Class Designer (VS200 beta 2) that contains four parameters.   Three of them are strings and one is a date. When I click on Create Instance and go to enter the parameters I can’t find a date format that it will accept.   What is the format it requires This is a Object Test Bench functionality. Here you need to pass a reference to Object of type Date. This won't allo ...Show All

  • Abrar Unable to load old J# Browser Control

    Over a year ago, we have converted successfully a few Java applets to J# browser controls. While doing testing for a new release, we now find that we could no longer load J# browser controls -- the browser displays a grey box and an error message in the status line saying "Unable to load DLL". I have the following installed on the machine Microsoft .NET Framework 1.1 Microsoft J# .NET Redistributable Package 1.1 Micro ...Show All

  • BBesser Tooltip and Change Backround

    How to make the toolip for example on button, then you are on button , it shows tooltip. and one more qestion How to change main form image by pressing for example button. You push the button, and the backround image changes. How to programme that about tootip. hmm but i don't need to create new button, i need to make it for already created button, so what now and there exactly i need write it, in that event and about changing ba ...Show All

  • jebz171339 Free game - Engineer your own World

    This is Windward's Christmas present to the development community. Download the Game – for Free! Happy Holidays from Windward Studios. Windward Studios, the creators of Windward Reports, is making Enemy Nations available for free. Sim City meets Civilization meets Age of Empires Enemy Nations combines the world building of Sim City, the large scale and detail of Civilization, and the combat of Age of Empires. Award Winning And you don't have ...Show All

  • Krishna Govindayapalli Pet peeve of the day

    Hi; I just spent about an hour in another place having to work around the fact that J# does not support vary many encodings - in String, Readers/Writers, etc. And what is really annoying is that .NET has this support and the J# team is in India so they are aware that the world uses languages other than English. I wish they had fully implemented this. - dave Hi; I know that - I spent hours changing these in my code. But it would have been n ...Show All

  • picoSam How do you read from and write to a file in Visual J#

    I need help as soon as posible. My problem is that reading from a file in J# is different then in Java. I have looked all over the place and still hae not found out how to do this. I need the help for a Final project that is currently in progress. If any on can help I would really appritiate it. Thanks for the information. It is very use full and was much needed. Although a do not want to say it I did not need it after all, I figured it o ...Show All

  • Tommi Pitk&amp;#228;l&amp;#228; Windows Media Player Full Controls

    I am looking to do a complete customization of a Windows Media Player that is integrated into a webpage but cannot locate any resources to get the complete list of properties and functions. I have seen others using Javascript to access these for customizations such as a first-frame of the video and setting a custom play button. Thanks in advance for any assistance. Hi Syn, For customizing media player ...Show All

  • manuel foerster ResourceBundle exception bug

    Hi; First off, thanks for the help. I am now up and running. And I posted how to do this at http://thielen.typepad.com/programming/2005/11/using_java_reso.html Second, if a bad name is passed in, for example: resources = ResourceBundle .getBundle( "not_my_resources" ); Then you get the exception: +  [System.ArgumentOutOfRangeException] {"Length cannot be less than zero.\r\nParameter name: length"} System.ArgumentOutOfRangeE ...Show All

  • vb.net learner Get process name using J#

    For example if I want to check if alg.exe is running is there any simple way of doing that Like if you can search for a process and return true or false if it is running or not. Hope anyone can help me :) Thanks NateV, That was exactly what I needed. Cheers. Hi there, There are two ways, that I know of, that you can do this. First Way ======= This way involves grabbing all ...Show All

  • nagajim performance difference in .NET 1.0 and .NET 2.0

    I recently upgraded a sockets application from .NET 1.1 to .NET 2.0. I found that the getByName method on the INetAddress class takes several times longer to execute under .NET 2.0 than it did in .NET 1.1. That is INetAddress.getByName("10.0.0.1") is a MUCH costlier operation under 2.0. Any suggestions on how best to go about 'recovering' the lost performance would be appreciated. Currently, I am caching the resolution, but it ...Show All

808182838485868788899091929394959697

©2008 Software Development Network

powered by phorum