Answer Questions
Joel-MMCC Editing j# source code is painfully slow in VS 2005
I have a large solution consisting of 16 projects and hundreds of source files. Editing J# code in VS 2005 is seriously slower than editing in VS 2003. In some cases, after typing a word it hessitates for 2-3 seconds before continuing. Intellisense is barely useable with 5 second delays during typing to display class members. How on earth can this been improved, the new features of 2.0 are a great improvement but it seems the IDE has taken a st ...Show All
Wilson Chew creating setup
I create the program, and now i want to share with other users, how to create setup for my program I have Visual Studio Professional Edition, all i want is to create the setup, which will install my program exe file. But i need that users who want my program , can use it and withaut VJ#. I just give to them a setup file, and they install my program exe, withaut any source files. is it posible Is it by design that the Publish does ...Show All
PaulGauthier Creating zip files without Path info
I using java.util. zip to zip files. Can anyone tell me if it's possible to zip these files without including the Path info of the source file in the zip I want to unzip the files into a directory of my choice. Any help would be greatly appreciated! :) Regards, Psydney Hi, I was able to zip files without their source path being included and also could unzip them into a directory of my choice. ...Show All
Rashin 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 Gaurav, Thank you for your response. I read about Orcas at the page you suggested me but I didn't find any official announcement about that feature of j# (x64 support), is there any at that site . I did find an official announcement at your blog and it see ...Show All
Kryton how to import org package in J#
how to import org package in J# . should i download any package for that VJ# supports only a JDK 1.1 level library, which doesn't contain any org packages. See the following page to know which packages, classes, methods etc. are supported by VJ#. http://www.ujihara.jp/CodeTips/VJSharp/en/jslibrary.html ...Show All
Scott1978 Welcome!
Welcome to the Visual J# forum. My name is Brian Keller, and I am the product manager for Visual J#. Please post your questions here and we'll try to answer them as quickly as we can. Cheers - Brian Keller Product Manager Visual J# J# is not difficult. It depends on your background. A J# book is a good starting point. You should also consider an algorithms and data structure book if you want to get more in depth programming knowledge. Al ...Show All
Bleah An unhandled exception of type 'java.io.FileNotFoundException' occurred in vjslib.dll
I keep getting this error and I do not know how to fix it. get the error after it compiles and befor the form shows up. my code looks like this: private void Form5_Load (Object sender, System.EventArgs e) throws Exception { int here = 0; for ( int NumberOfStudents=0; NumberOfStudents<2500;NumberOfStudents++) { BufferedReader Stuff = new BufferedReader( new FileReade ...Show All
GuruprasadTG Delegate Functions with Arguments
Hi, I am trying to get Delegate functions to work with parameters I added "String str" to the Delegate declaration at the top and then to both the functions f1 and f12 - . Taking these out and having no arguments allows the code to compile and run ok - Trouble is putting these in and the code gets hung up on the Invoke statement - I tried changing the Invoke statement in various ways but can not come up ...Show All
Korab 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
ScottTurner 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 You may know how to create resouce files if you open J++ ...Show All
Simon Morris How to solve mutiple execute files
I am coding in J++, hopeful this forum can solve my question. We are using J++ to solve point of sale peripharal devices. We try to code it as separate execute files. As this, the program call the separate file and leave everything to it. In this situation, we probably will create multiple exe files in the service manager. First I tried to code it into a DLL. But our team decided that would cause maintenance problem. If we want to update the ...Show All
luthers search in combobox by pressing button
I am creating a program , some words just like dictionary, items (words) are in combobox. You select word in combobox and explanation of that word you select appears in label. Later i was trying to make search, i create that, bus is problem. That is just like live search, then you are typing word, program automaticly in label says "no match found" , then you finish - in label appear if that word is. How to do that : you write word in c ...Show All
karefrey method to cast to/from ubyte[]/byte[]
Hi; I know I can copy a byte array to a ubyte array using System.Buffer.BlockCopy. But since the actual data is identical in both arrays, and I have some large arrays, is there a way to just case a byte[] to a ubyte[] thanks - dave Hi Dave, Pls try the following byte [] ba = new byte [101]; ubyte [] uba = ( ubyte []) ( Object ) ba; ubyte [] uba2 = ( ubyte [])( System . Array ) ba; Thanks, Varun [MSFT] Hi David, In abov ...Show All
grade Does Visual J# supports Browser Helper Objects(BHO)
Hi In our web application we want to access frames in HTA.But some reason ,HTA doesn t seems to load the application.So now we trying for BHO in VJ#.But we don t have a clear idea ,whether it is supported by vj# or not.If any body have idea in it ,revert with some examples. thanks praveen Hi Noorul, Now the code gets compiled without any error and i am able to sign the dll and registered it using regasm. ...Show All
Ilia High School Teacher needs help
Hello, I am a high school math teacher and my students and I am having difficulties getting my first java applet to work for my students using j# 2003. I have successfully written applets in miscrosoft visual j++ and want to run some of the same applets with j#. Here is my problem. I would like to run the same applet found at http://www.mrpowell.net/progra/java/example1.htm But can not get the applet to run. & ...Show All
