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

Software Development Network >> Visual J#

Visual J#

New Question

ODBC error message: [Microsoft][ODBC SQL Server Driver]00107002COUNT
Is it possible to use NotifyIcon without a form?
Maybe stupid question but: How to get float out of System.Single?
Passed value in ASP Pages
Enterprise Mobile Apps: Java, J# or C#?
Reference parameters
[J#] Sending bitmap ... socket communication
Can any one give me code or help me set up Microsoft Visual J# to Run Faster
J# Browser Control under 2.0
java (J2EE 1.4) convert to J#

Top Answerers

IT Professional
Jose A. M.
Thomas Irvine
P.D.
MattP65
Matt7340
Vince15
Peter Saddow MSFT
Mark Dahl
sirmmo
Telegraph: Egg-testing technique 'doubles the chances of older women on IVF'
Only Title

Answer Questions

  • Steven R Why is the J# Redistributable package needed?

    Hi! Why is the J# Redistributable Package needed to run a J# application Or can I just redistribute some assemblies For example, if I develop an application in Borland Delphi using WinForms, I can compile this application to an exe file. This exe file can be executed on any computer that has the .Net Runtime Framework installed. No Delphi .Net Redistributable Package exists. If I develop an application in Dephi using the VCL.NET api all I ha ...Show All

  • danhood Passed value in ASP Pages

    Hi, I would like to know how to retrieve a passed value in J#. I have a new page and I want to access it's passed value. New Retrieved Page Example URL: http://test/default.aspx pageStatus=0 I have an int variable (int pageStatus;) in my default.aspx page and I want to assign this variable the value found in http://test/default.aspx pageStatus=0 What method do I use Thanks in advance, Allan I will try the &a ...Show All

  • Andy Bisson How can I obtain an UML classes diagram from VJ# Express code?

    Well, that's the question, xD. I need to draw a classes diagram from an application (a VJ# project) , and I know there are many tools that do it automatically for java code. Is there any tool able to do that for vj# Thx If you have Visual Studio Team Suite then you can generate class diagram for your project. Steps to create Class Diagram Open Class View ( View --> ClassView) Select any Type no ...Show All

  • kikhan_21 Deploying Windows Appication in J#

    Hi, I'm looking to deploy my windows app. in J# and I'm using the msdn library's "Deploying a Windows Application" walkthrough ( http://msdn2.microsoft.com/en-US/library/k3bb4tfd(VS.80).aspx ) to help me do so. Not sure if this is the right path to travel, but I'm just looking for the basics. I'm looking for the equivalent J# code for the following command that launches Notepad.exe and gives it focus: Shell("Notepad.e ...Show All

  • Aditya Gaddam newbie: trouble connecting windows form to SQL table

    Thanks to anyone who can help... I'm building a data entry windows form in VS.Net 2003 J# that requires the data to be sent to a SQL Server table (the table's name is "Local") when the form's "SAVE" button is clicked. I've built the form using the windows form designer. There are six fields that will use SQL statements to send data to the Local table, and none of the fields are permitted to be null values. Two of the fields a ...Show All

  • Nats_007 Migrating JNI to P/Invoke

    Hi guys, I'm attempting to migrate a Java application to the .NET framework. This Java application uses some C++ code to provide functionality not present in either the Java framework library or the .NET framework. Java makes these calls via Java's JNI technology. For example: // The C++ code: JNIEXPORT jint JNICALL Java_xyzMedia_util_MyControl__1getSpectrumLength(JNIEnv *env, jclass jcl) { ... } // The Java code that calls the native method: ...Show All

  • Dharmesh M Mehta I need System.setProperty(String, String)

    Hi; I need to be able to set some system properties (for some unit tests). How do I do this In java it's System.setProperty("key", "value"); thanks - dave The following may be the right code. java.util.Properties p = System.getProperties() ; or java.util.Properties p = new java,util.Properties( System.getProperties() ); p.setProperty("Hello", "Hi"); System.setProperties(p); System.Console.Write(System.getProperty("Hello")); The latter on ...Show All

  • RobGriff switch off enum keyword

    Hi, i want to switch off the enum-keyword in J#. My projects was compiling in VS2003 before. I switched to VS2005 now, which breaks to compile my projects. The keyword enum is used as variable name. Which was working in VS2003. How can i switch to the old behaviour of the j# compiler best regards, atem Here's what my team mate, Pratap has to say on this - cool stuff! The way to do that is to use v ...Show All

  • B-soft 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 Dave, Can you provide more information regarding your application. What resources are ...Show All

  • Nisith B Paul vj# security warning

    Hi, We are having code-behind html project in vj# and this project is packaged into a .dll file which is hosted on the browser using <object> tag in a html page. But when we access this page using web server, we are getting vj# .net security warning as "This page contains components that are potentially unsafe. Do you wish to continue " We need to block this warning. I found same kind of problem in http://forums.microsoft.com/ ...Show All

  • TomLake deploying j# runtime

    Hello, i want to create a deployment project in vs2003 for a j# project which automaticaly installs the j#-runtime if it isn't installed on the clients mashine. i already done this with a launch condition. the launch condition forces to run a .bat file which starts the j#-runtimeinstallation and at finish, restarts the .msi again. i want to get rid of the uggly dos-window which pop up when running the .bat file. it would be ni ...Show All

  • Cimares Easy Question: Accessing Textbox

    Hello, Sorry for the newbie question. I am writing a .aspx page and need some help. I am writing a function between <script> tags at the top of the page. My code is in J#. My function will retrieve data from a database and post them into existing textboxes on the page. My problem is accessing the textbox. I don't know what method to use in this framework to access and write to the existing textbox. Any ideas I know in VBscript, the method ...Show All

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

  • Aaron Smith ObjectInputStream - cast exception

    Hi; I make the call: ObjectInputStream ois = new ObjectInputStream ( new FileInputStream (serFile)); Document correctDoc = ( Document ) ois.readObject(); And get the exception: 1) testTemplates(net.windward.format.wordml.test.TestWordMLParser)java.lang.ClassCastException: Unable to cast object of type 'System.Byte[]' to type 'System.Object[]'.    at java.io.ObjectInputStream.fillArray(Object obj, Int32 len, Class elemType) & ...Show All

  • jialin Creating documentation for our project

    Hi; Any suggestions on how we build up our documentation for our API nDoc does not handle VS 2005 and does not understand java style comments. thanks - dave Any chance Microsoft might release their documentation tool Maybe open source it like they did with WIX It sure would be nice to have... Especially since ndoc is not available for VS 2005 yet for any language - and may not be ready soon - http://sourceforge.net/mailarchive/foru ...Show All

798081828384858687888990919293949596

©2008 Software Development Network

powered by phorum