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

Software Development Network >> Visual J#

Visual J#

New Question

J# tutorials?
Visual J Redistributor package from non admin account
I need System.setProperty(String, String)
Swing plug-in in jsharp
Return a class in a get-method
List of All J# Browser Controls from Different Iframes
Postdata in webbrowser.Navigate
Is it possible to use NotifyIcon without a form?
Hit a bug
running 64bit in J# express

Top Answerers

Kaa
MQ
A.I.V
Hal Kilmer
Smalo
Bennie9425
cliffhanger9
Gerhard B
mcalvin
Baskar V
Ferrand, Nicolas
Only Title

Answer Questions

  • Kevin F Enum Problem

    How do I convert this from java to j# private enum Status {CONTINUE, WON, LOST}; Thanks for the help. What packages do I have to import By the way im using j# 2003, since thats what my school has. Did you see any problem with above code in VJ# Hi, In Visual Studio 2005 (.net framework v2.0), your enum code must compile as it is. PLease refer this link for more on en ...Show All

  • Jamey Taylor litlle problem

    Helllo, I want to create the simple program, but i don't know how to do one thing: i have 2 texbox , label and button in textboxs you type numbers, and the answer appears in label. And all it should be programmed on button click. But i need that, if my number is smaller thatn 18 and bigger than 25 then label set text , f.e. " it good" or smtg, and i have these groups: 18.5 < rez < 24.9 25 < rez < 29.9 30 < rez < 39.9 40 < re ...Show All

  • bajohnson Warning - don't use ReSharper

    Hi; If you have done much development in C# you probably have ReSharper and it is a tremendous help. But when it get's in J# it slows the system down a LOT and it gets all confused with intellisense. I ended up removing it. Reported to JetBrains and they acknowledged it and are working on it. Life is hard in VS 2005 w/o ReSharper :( Hi, How did you remove it exactly Barry Control Panel, Add ...Show All

  • Karlo47 J# rookie: need help with multiple forms

    Hi, Firstly, thanks to anyone who responds! I have only about a month's worth of experience using .NET and J#, and a semester's worth of Java (a year ago). Needless to say, I'm no expert. I'm building an application that has about twenty separate Windows Forms. I have a Main Menu Form that I would like to be the application's welcome screen, and is intended to direct the user to other parts of the application through the use of clickin ...Show All

  • ianRm J++ running on Window 2003

    I have a J++ dll that I need to install on a Windows 2003 machine and it will not install. Can I run a J++ dll on Windows 2003 If so, what do I need installed on the machine so the J++ dll will run I have tried to upgrade to J# but it is using com.ms.com.Variant and SafeArray. I can not get the variant to work. It is not returning a type Variant to my ASP. Also, I read 2d safe arrays will produce unpredictable results. Below is the ...Show All

  • Doug P. J# rookie: need help with multiple forms

    Hi, Firstly, thanks to anyone who responds! I have only about a month's worth of experience using .NET and J#, and a semester's worth of Java (a year ago). Needless to say, I'm no expert. I'm building an application that has about twenty separate Windows Forms. I have a Main Menu Form that I would like to be the application's welcome screen, and is intended to direct the user to other parts of the application through the use of clickin ...Show All

  • Aaron Oneal OBJECT TAG present inside the IFRAME is not loading

    hi all    i have an object tag which is present inside the source of iframes.it is not loading the class when it is present in sucessive iframes.But it is loading the object that is present in the iframe which is not already present inside another iframes. it acutally present as file1.jsp <html> <body> <iframe src=encode.jsp> </body> <html> encode.jsp <body> <OBJECT CLASSID="CLSID:CF83EA5E-0FFD-4 ...Show All

  • Ravana Difficulty in inheriting Abstract Class

    I am trying to work thru Visual Studio Hosted examples using J# - The examples only discuss C# and VB so I am trying to come up with the equivalent J#. I am stuck on code similar to the following: ( I have simplified it a bit to what is in the example - the example using C# )   Add Class: Company :   using System;   namespace Northwind { public abstract class Company { public int ID; public string Na ...Show All

  • ObieOne j# form load

    I've got an application that scans for updates when it's started (loads). I've got some progressbar that advances as files are being scaned but the form doesnt display until after the scanning is done. How do I get the form to display right after being loaded Using VS2005 if it matters. found it - windows problem - was naming files Human.txt.txt *sigh* thanks for the help with the first problem ...Show All

  • EGH25091970 Publishing a project

    I am trying to publish my project, but when I run the installer it dies because the the project has been improperly formatted. I have been unable to find any references to formatting during publishing, or even system requirements for the published version. If you have an easy solution or if you can point me in the direction of reference material for this that would be great. Thanks. I'm going to assume the sui ...Show All

  • cada0310 unable to open C# solution after converting it using JLCA

    Hi, i am using VS.Net 2005 Beta 2, successfully converted a J2EE application to C# project. But when i tried to open C# solution second time it is not opening. Have someone come across this situation Can somebody address this issue. Thanks. Yes that is correct. Hi, Could you please tell us the error message you are getting That will really be ...Show All

  • Andy McG Difficulty in inheriting Abstract Class

    I am trying to work thru Visual Studio Hosted examples using J# - The examples only discuss C# and VB so I am trying to come up with the equivalent J#. I am stuck on code similar to the following: ( I have simplified it a bit to what is in the example - the example using C# )   Add Class: Company :   using System;   namespace Northwind { public abstract class Company { public int ID; public string Na ...Show All

  • uhclstudent java (J2EE 1.4) convert to J#

    Hi, I want to convert my application in java (J2EE 1.4) to J# with minimum changes. Where can I get the script Thank's Alexei (I have tryed JLCA 2.0, 3.0 and it gives me about 100,000 errors becouse it convert to C#. I don't have a time for working on errors. I read that Java can be converted to J# with minimum errors.) Hi, is it possible that there is no way in porting can someone of Microsoft tell us about this Hi, I got 1 ...Show All

  • nubie Problem with C++/CLI and J# interaction bug

    I'm having a problem with C++/CLI and J#. I am writing a class library in C++/CLI and want to use it from J#. I narrowed down my code and wrote a repro: a.cpp: #using <mscorlib.dll> #include <stdio.h> using namespace System; namespace AA { public ref class A { public : unsigned long Print() { printf( "Hello\n" ); return 0; } }; } b.jsl: import System.*; import AA.*; public class Test { public static void main( Stri ...Show All

  • Rob Lemmens how can i remove the security warning in VJ#

    Hi  i have a web application which is code behind html ,upgrading from vj++ to vj#.The application uses wfc control to launch it.While trying to run ,it throws a security warning saying"This page contains components that are potentially unsafe,Do u wish to continue".The process proceeds when clicking yes button otherwise it does n t move further.   this security warning looks strange ,when come to internet user.So how can i remove or ...Show All

535455565758596061626364656667686970

©2008 Software Development Network

powered by phorum