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

Software Development Network >> Visual J#

Visual J#

New Question

How do you specify the filename for a print file programatically?
Enum Problem
How do you specify the filename for a print file programatically?
System.InvalidOperationException Every Time I try a particular Web Reference
Error when installing Visual J# .NET
click n' drag: easy question (i hope)
Difficulty of porting to J# from Sun Java?
High School Teacher still needs help.
ChangeDatabase
Maybe stupid question but: How to get float out of System.Single?

Top Answerers

maranbe
BMW307
markm2005
nron
Hilton Locke - MSFT
Michael AG
Axel.C
Mandar Y
derhackler
Paul Reith
XFlows
Only Title

Answer Questions

  • Toni Greco Difficulty of porting to J# from Sun Java?

    I asked the same question in Sun's web site, which got me some cold faces. I hope folks here would be nice. i m only seeking an advice. my app was originaly developed under Sun's JDK 1.1.4, but as i kept adding more fetures on it, it has been optimised to a 1.4.2 app, and some parts of the code are using 1.5's. Due to the fact that my clients mainly use windows and they only like Word(no open office), and i find it's really hard to deal with W ...Show All

  • rpsprott Major bug in TreeMap

    Run the following program. Items 17, 18, & 19 are not removed: public static void main ( String [] args) { Map map = new TreeMap (); for ( int ind = 0; ind < 20; ind++) map.put( new Integer (ind), "Item: " + Integer .toString(ind)); // show all System .out.println( "show all:" ); for ( Iterator it = map.values().iterator(); it.hasNext(); ) System .out.println( "value = " + it.next()); // delete some ...Show All

  • Jay Gassette How to set System.SetProperty() in J#

    Hi, When I did a port from JAVA to J#, I need to set proxy settings using setproperty but I tried using the the method recommended in http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=148074&SiteID=1 , I cannot find the method setproperty(). I am using Framework 1.1. Desperately need help. Thank you. Warm Regards, Francis The right code may be the following. { java.util.Properties p ...Show All

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

  • ieddy Error Configuring Web Site

    I am using Visual Studio 2005 Beta 2 - I have completed Soup-to-Nuts 1 thru 9 doing them in Visual J# and have had to create all added code and files that appear from one lab to the next, not to mention the problems with the differences in ADO .Net with datasets and table adapters anyway I have go thru that, now Lab 10 deals with Web applications so I decided to revist the Lab "Creating ASP.NET Web Applications with J# - Part 1" I ...Show All

  • Dave Biggins J# Browser Control under 2.0

    I have an application running in ie using the JBC that ships with 2.0. Whenever a modal dialog is displayed, then my system will "beep". Atempting to move the dialog around inside the JBC container causes coruption of the display. The graphics context gets all messed up. I have signed the dll that is loaded and given it FullTrust. This did not occur in 1.1, but renders the JBC virtually useless. Any ideas on how to resolve this behavio ...Show All

  • Devilar ResourceBundle.getBundle("resources.resources"); throws an exception

    When I call: ResourceBundle .getBundle( "resources.resources" ); to get my resources (which are in the dll), I get an ArgumentOutOfRangeException - +  $exception {"Length cannot be less than zero.\r\nParameter name: length"} System.Exception {System.ArgumentOutOfRangeException} What do I need to do thanks - dave Hi David, What I understand from your post is that you have a java .properties class and you want to a ...Show All

  • skyover Vj# 1.1 based Zip Extraction...

    hi All, I have created a tool for my company which is predominanlty in C# and the application downloads a ZIP file from the internet. This is were I use VJ# because I guess it is easier to use VJ# for extracting the file. If I run my application on my DEV machine, the application runs so smoothly and it is able to extract the files according to the logic. But if i run on another machine, It does not. I have installed the Vj# redristibutable. Can ...Show All

  • archijack How can i convert integer number into hexadecimal in J# ?

    Hi This the first time for me at this forum, and i want to get started with a question How can i convert integer number into hexadecimal in J# Regards Younis Hi Younis, You can try using Static method of java.lang.Integer class: toHexString(int) Signature: String java.lang.Integer. toHexString(int) Example: System.out.println( java.lang.Integer .toHexString(1122)); Output: 462 Varun Visual ...Show All

  • Budoray auto Import

    Is there anyway in VS 2005 to auto load import references in J#. I use the javax.swing.JOptionPane in most of my projects and was looking for a way to load it automatically into new programs. Thanks for any input. Sorry Erratis, VJ# doesn't have this kind of support in VS2005. We will take your suggestion to consider for our next version. Correct. Let me get your ...Show All

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

  • Woserbop NumericUpDown

    Hello! I've been working on this problem for days now... and I can't solve it. Here's the thing: Is there any way to see when a numupdown value has decreased or increased I am making a program, that, depending on the value of a NumUpDown control, counts the price of an item. When a tab is entered (OnEnter) the NumUpDown control is activated. It's value is set to 100. if (lenght >= 100 && lenght < 110) {  &n ...Show All

  • amr_a Priority Queue

    Hello. I found a class in sun's API called java.util.PriorityQueue. I'm trying to use it with the J# (2003), but it doesn't exist. What can I do to use it If i can't, is there any other priority queue   Priority Queue in C# ...Show All

  • Barry Smith ResourceBundle problem

    Hi; If I call ResourceBundle.getBundle("resources", locale) where locale is for a locale I don't have a resource for (I used "zz_XX") - it throws the ArgumentOutOfRange exception. In this case it should work and just use resources.properties. I also tried "en_XX" which should fall back to resources_en.properties - but again I got the exception. - dave Hi, I am not getting the exception that you have mentioned. It would be really helpful if ...Show All

  • GaryP microsoft word documents

    Hi, I'm trying to make an aplicarion that modifys a word document (plantilla.doc). I'm changing it byte to byte, but then I need cange its length. Is there an easyer method to do that Do you have any performance or server experiences with Word (or Excel) and automation It's not Word, but here is an article I have written about Excel and J# automation. I hope this will give you an idea what it's ...Show All

272829303132333435363738394041424344

©2008 Software Development Network

powered by phorum