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

Software Development Network >> Visual J#

Visual J#

New Question

ODBC error message: [Microsoft][ODBC SQL Server Driver]00107002COUNT
case statement
J# noob :-p, How 2 submit a form
ChangeDatabase
Running a Simple Program in J#
Visual J#
too many images = greater load time
100% CPU usage !!
GNU Classpath "95% and counting" 0.19 released
java.net.ServerSocket under J# & .NET Framework

Top Answerers

Wynand
Nokas
MattMorg
nezff
PaulLinton
Patrick Baker -MSFT-
Romesh Chander
TWeiler
Marco Sousa
ghoffer
Trucs et astuces pour d茅butants
Only Title

Answer Questions

  • rmsmith System.IO.Stream <==> java.io.InputStream/OutputStream

    Hi; So you have wrapper classes where like: DotNetStreamWrapper (java.io.InputStream stream) : implements System.IO.Stream JavaStreamWrapper (System.IO.Stream stream) : implements java.io.InputStream And same question for Enumeration <==> Iterator. - thanks - dave Hi Dave Thanks for the feedback and the information provided. We will update have more information on this, as mentioned the the previous post. With regards Ashwin ...Show All

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

  • Mike Turner - MSFT 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

  • Firdouse 64 bit integer support

    Lets say you have a function which accepts a 64 bit unsigned int. In my case this function was written in C++/CLI as a part of a managed wrapper. I am having problems though. It seems the compiler does not do implicit casting for 64 bit values. Here are some examples (in all cases the input is a System.Int64 value): f1(1 ); // This does not work because it think's 1 is an int and therefore thinks I'm trying to reference a wrong function. f1(( ...Show All

  • netbug Is it possible to use NotifyIcon without a form?

    Hi, I'm trying to write an application that sits in the system tray and runs in the background, displaying a balloon pop-up when a condition is met within the program. Using Visual J# 2005 Express Edition, there's a form object called NotifyIcon, which would do what I need it to do, however, it is part of a form. Is there a way of using this class without having it attached to a form If not is there any way I can achieve the same outcome I ima ...Show All

  • Wiwin Teja attachEvent using code-behind html

    Hi, We are having code in vj++ code-behind html project as below: public delegate void HTMLEventHandler(IHTMLEventObj e); mshtml.IHTMLWindow3 iwin3 = (mshtml.IHTMLWindow3)controller.DRecordWindow.getPeer(); iwin3.attachEvent("onresize",new HTMLEventHandler(resize)); public void resize(IHTMLEventObj o) { int x = o.getClientX(); int y = o.getClientY(); controller.docListener.click.setClipWindow(new Point(x,y)); } H ...Show All

  • hoy Rebuild Issue with Object Test Bench

    I am able to create an instance of a class in the Object Test Bench.  But everytime I attempt to invoke a method (even an empty void method) of the class, the tool asks me to rebuild it, after which it resets the class and does not execute the method.  It does this even though I have not modified the code in any way.  I try to execute the method right after I create the instance. This seems to happen if you have multiple projec ...Show All

  • PradeepTR Data Base Mapping

    I had a program made in Java language and i want to convert it into j#(Use it in J# environment),this program contains database connectivity using java style.   try{    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");    conn=DriverManager.getConnection("jdbc:odbc:inventory","","");    s=conn.createStatement();    }catch(Exception e) {System.out.println(e.toString());} when i co ...Show All

  • Sumith Koshy 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

  • dogboy ff which version of JDK is J# 2005 compatiable with?

    I am not talking about web service, applet, nor enterprise. but about plain java applicaitons with file access and Gui user interaction, text classes etc. Some people said J# 2005 is JDK 1.3 compatiable. Is that true Does it have swing classes  I would stil be happy even if the GUI user interface is more windows like than Java, so long it just works.  That also applies to file dialogs. What about jdk 1.42 ...Show All

  • Kalpesh Vora Is the Java serialized object in J++ and J# are compatible?

    Hi, I want migrate my existing J++ project to J#. But since the data stored in serialized object, my J# upgraded application cannot read those object produced by J++. Is there any way that my J# application can read j++ serialized object I have watch the produced object in notepad, the produced object is very similar. Just a few byte different. did I do something wrong in the setting Thank you Hi, I checked ...Show All

  • Exclusive What is the official url for the vjsredist install?

    Hi; What url should we point people to in our installer thanks - dave Hi, http://msdn.microsoft.com/vjsharp/downloads/howtoget/default.aspx  is the place where you can find links for all three redists versions versions (1.0, 1.1, 2.0) shipped to date. Thanks. ...Show All

  • Burkhard M Any good Add-Ins for VS 2005/J#?

    Hi; In the java world I use IntelliJ and in the C# world I use Visual Studio wit ReSharper & nunitaddin. Is there anything like this for VS 2005/J# ReSharper flat-out does not work with J# (they officially don't support it and most of it's features are turned off in J#). And nunitaddin does not understand J# (for a main()) or junit. And Visual Studio doesn't come close to having the features found in ReSharper & nunitaddin. Anythinf out ...Show All

  • GeoK knowing character representation for an 8-bit ASCII code

    i wanted to get the character representation of an 8-bit ASCII value. how can i do this are there any predefined Methods or Classes for doing this You might want to try out the following. class repro { public static void main() { //char s = 65; char s = '\u0041'; System.out.println(s); } } -Varun ...Show All

  • GeoB 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. Hi, You may also like to refer this post . This post has got a working sample code also. I would still suggest you to go use Data Configuration Wizard instead of writing the code yourself. Code in the recommended post has a ...Show All

646566676869707172737475767778798081

©2008 Software Development Network

powered by phorum