Answer Questions
smeags Where are the Object Test Bench Features?
The functionality of Object Test Bench seems to missing from the Software Architects edition I know that unit testing is only in the Developers Edition, but I had thought that the Object Test Bench was tied to the Class Designer which is included in the Software Architects edition. I can bring up the Object Test Bench window, but the functions, like Invoke Static Method, which are context menu items off of the Class Designer, don't ...Show All
dtsob75 Open a picture from file
Hello! :) I'm programming in Visual J# and I ran into a problem. For small pictures (thumbnails) I use pictureBoxes. However, I would like that a user could open a full size picture. I would like the picture to be in asome folder and that the program would load it and open it in user's default image wieving program. That way my .exe file would be much smaller and I think work faster. Any help appreciated ...Show All
jwdenny Delegate and EventArgs Question
Hi, I am very new to programming and i have a quick question. I am developing a webpage and I want a delegate to handle a button click. I am programming in J#. What I want to do is display the element found at ArrayList(i) after clicking on a button. Example: <input type="button" id="display" value="Display" runat="server" onserverclick="write(<%=i %>)" /> I want the method 'write' to ...Show All
PoW How different J# is from Java?
Hi, Found lot of old java code could not be compiled under J# environment. It looks like I have to re-write some of the code by using new classes in J#. Do your guys know where I can get a J# and Java cross-reference book or document ( better free). Painful !!!!!!!!!!!! Steven He J# is not Java, there are tools to help with the migration. Training, 15 hours of training, FREE at (but you sound like you have it ...Show All
Franco22 One app, multiple main()'s
Hi; I have a single project that has about 18 main methods in it. How can I run the created exe (it's a console app) and tell it which main to use as "the" main thanks - dave Add the following class and set it startup object. class Program { public static void main(String[] args) throws Throwable { if (args.length < 1) { System.err.println("Missing arguments."); &nb ...Show All
Pierre Bakker J# / java common source resource
Hi; I've created a website at http://www.gotjsharp.com for issues on using one set of source code for java and J#. I'm hoping I can save some others some of the pain I wnet through finding the resources I needed. thanks - dave Hi Dave, Appreciate your effort towards the J# community. Thanks, Varun ...Show All
Marcel Lattmann 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 Claudia, We plan to release the first J# version for x64 along with the Orcas release. To read more about Orcas and the timeframes pl go here . Hope this helps! Thanks Gaurav Hi Claudia, I ...Show All
PDFpilot Is there a Special Tag to add values to variables from the properties window in J# like there is in C#??
In C# when you create custom controls you can add the following tag so that in the Design View in visual studio you can give values to variables in your custom control class; [Category("Images"), Description("The image shown when the mouse button is pressed")] public Image PressedImage { get { return m_PressedImage; } set ...Show All
JonnyDeep J# Books & Questions
I'm a new developer and am planning to write an application for church office administration. It would keep track of facility usage, payroll, members, attendees, donations and general accounting. I've looked into a couple different languages and have narrowed it down to J# or Omnis Studio (Omnis.net), which appears to be underdeveloped. However, I'm having trouble finding resources (in print or electronic form) for J# and learning it ...Show All
taibo LiveConnect (JSObject) works in 1.1, doesn't work in 2.0 ?!
I have a trivially small applet (J# browser control) with a constructor that just does this: netscape.javascript.JSObject.getWindow (this); If I build this with Visual Studio .NET (framework 1.1.4322) and embed it in a web page, it runs fine in IE6. But if I build it in Visual Studio 2005 (framework 2.0.50727) it throws a NullPointerException when run. (Without this call, applets work fine in 2.0.) Has anyone else seen this problem An ...Show All
neRok unsafe dll in J# browser control
In a multi-dll J# browser control, the DLL containing the main J# Browser Control class uses another dll which is written in C# and contains unsafe code. I got java.lang.securityException. Anyone can help me to deal with such situation regards Hi You might need to change the .NET security policy on your machine, if you want to allow privileged operations to be performed by the JBC. .NET gives permissions ...Show All
aamir malik [J#] Convert bitmap to array of bytes
Hi everyone! I'd like to ask you how to convert bitmap or any image to array of bytes. I need that because I want to send this image through the socket (some kind of stream) to my second application - I have client and server. Maybe you know diffrent kind of solution. Thanks for any ideas. This is C#, but the concept is the same: private byte [] Bitmap2Bytes( Bitmap bmp) { &n ...Show All
Dustmaker 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!!! Either press the "Play" button in the toolbar, or select "Start (without) Debugging" from the Debug menu. Hi, Can you please post you ...Show All
AlexCode Access Database
Does any one have a sample code working with an MS Access Database I'm looking for J# sample code... Thanks LaurentLD do you get anywhere with the J# Access sample Do you understand it Very interesting question someone can help Is their any substitution to old DAO or ADO Thanks for help, a little example should be fantastic. ...Show All
Steven Don How do you specify the filename for a print file programatically?
Does anyone know how to specify the filename for printer output programatically I need to create a PCL output file from multiple TIF files, which are created by a third party. My first problem is that I need to create a printfile without having to type a filename in the windows dialog box. My second problem is figuring out how to combine the tif files into one print job. Thanks in advance. Rob ...Show All
