473,413 Members | 2,058 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,413 software developers and data experts.

C# Browser Control?

http://msdn.microsoft.com/vjsharp/browsercontrols

Does anyone know if there will be a version for C#?

Nov 16 '05 #1
7 2118
There doesn't need to be a C# version. These controls are mainly for
converting Java applets to J#. If you want to convert a Java applet to C#,
run the Java Conversion Wizard included with VS.NET 2003.

--
HTH

Kyril Magnos

Question of the day:
What is Mono?
A) Disease where the lymph nodes become swollen.
B) A single sound
C) A synonym for one
D) A port of .NET meant to royally irritate MSFT
E) All of the above.

"Robert Kent" <ro********@yahooie.coma> wrote in message
news:eu**************@TK2MSFTNGP09.phx.gbl...
| http://msdn.microsoft.com/vjsharp/browsercontrols
|
| Does anyone know if there will be a version for C#?
|
|
|
Nov 16 '05 #2

"Kyril Magnos" <ky**********@yahoo.com> wrote in message
news:OQ**************@TK2MSFTNGP09.phx.gbl...
There doesn't need to be a C# version. These controls are mainly for
converting Java applets to J#. If you want to convert a Java applet to C#,
run the Java Conversion Wizard included with VS.NET 2003.


Does J# have an advantage over the other .net languages when it comes to
creating applets, or whatever the .net equivalent is called?


Nov 16 '05 #3
I wouldn't say it has an advantage, per se. I would say that if you are
migrating over from Java, then J# is the easiest transition, next to C#.
There are things that J# does differently from the other .NET languages,
just as there are things that C# does differently from VB.NET. All in all,
any code that is written for the .NET framework gets compiled down to IL.
That goes for all 4 of the different languages.

Are you looking to port over some existing applets?

--
HTH

Kyril Magnos

Question of the day:
What is Mono?
A) Disease where the lymph nodes become swollen.
B) A single sound
C) A synonym for one
D) A port of .NET meant to royally irritate MSFT
E) All of the above.

"Robert Kent" <ro********@yahooie.coma> wrote in message
news:e8**************@TK2MSFTNGP12.phx.gbl...
|
| "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| news:OQ**************@TK2MSFTNGP09.phx.gbl...
| > There doesn't need to be a C# version. These controls are mainly for
| > converting Java applets to J#. If you want to convert a Java applet to
C#,
| > run the Java Conversion Wizard included with VS.NET 2003.
|
| Does J# have an advantage over the other .net languages when it comes to
| creating applets, or whatever the .net equivalent is called?
|
|
|
|
Nov 16 '05 #4

"Kyril Magnos" <ky**********@yahoo.com> wrote in message
news:OJ**************@tk2msftngp13.phx.gbl...
I wouldn't say it has an advantage, per se. I would say that if you are
migrating over from Java, then J# is the easiest transition, next to C#.
There are things that J# does differently from the other .NET languages,
just as there are things that C# does differently from VB.NET. All in all,
any code that is written for the .NET framework gets compiled down to IL.
That goes for all 4 of the different languages.

Are you looking to port over some existing applets?

Nope. I'm looking to write new applets (or whatever they are called now). I
started with C# two years ago and haven't done anythign with J# or Java.

I'm still using vs.net 2002, haven't upgraded to 2003. I'm hoping I can hold
off until 2005 is released.

Is it easier to create an applet in J# than it is in C#? It looks like the
browser control only works with J#. Is that true?

Nov 16 '05 #5

"Robert Kent" <ro********@yahooie.coma> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...

"Kyril Magnos" <ky**********@yahoo.com> wrote in message
news:OJ**************@tk2msftngp13.phx.gbl...
I wouldn't say it has an advantage, per se. I would say that if you are
migrating over from Java, then J# is the easiest transition, next to C#.
There are things that J# does differently from the other .NET languages,
just as there are things that C# does differently from VB.NET. All in all, any code that is written for the .NET framework gets compiled down to IL. That goes for all 4 of the different languages.

Are you looking to port over some existing applets?
Nope. I'm looking to write new applets (or whatever they are called now).

I started with C# two years ago and haven't done anythign with J# or Java.

I'm still using vs.net 2002, haven't upgraded to 2003. I'm hoping I can hold off until 2005 is released.

Is it easier to create an applet in J# than it is in C#? It looks like the
browser control only works with J#. Is that true?


One more question. Does anyone know if Mono will support applets? If so, can
they be used in browsers other than IE and on the Mac and Linux operating
systems?

Nov 16 '05 #6
Hello,

I am not quite sure what you mean by 'applets'. If you are coming over from
java, you will find there is no direct equivallt of a java applet in .NET.
Your best bet is a web form. Anything you can do in a java applet, you can
do using web forms or web services, and they can run in any of the CLS
languages. If you like C#, you can use it. If you would prefer a more
java-like syntax, use J#.

Also, in response to your second question, as far as I am aware .NET web
applications run on any thin client, not just IE. Why wait for Mono when you
already have it.

The above may or may not be strictly true, I don't pretend to be the worlds
expert, having only a few months experience with .NET 2003 (I was still
using VC++ and VB version 6 until may)

Shaun Williams

"Robert Kent" <ro********@yahooie.coma> wrote in message
news:#F*************@TK2MSFTNGP09.phx.gbl...

"Robert Kent" <ro********@yahooie.coma> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...

"Kyril Magnos" <ky**********@yahoo.com> wrote in message
news:OJ**************@tk2msftngp13.phx.gbl...
I wouldn't say it has an advantage, per se. I would say that if you are migrating over from Java, then J# is the easiest transition, next to C#. There are things that J# does differently from the other .NET languages, just as there are things that C# does differently from VB.NET. All in all, any code that is written for the .NET framework gets compiled down to IL. That goes for all 4 of the different languages.

Are you looking to port over some existing applets?
Nope. I'm looking to write new applets (or whatever they are called now). I
started with C# two years ago and haven't done anythign with J# or Java.

I'm still using vs.net 2002, haven't upgraded to 2003. I'm hoping I can hold
off until 2005 is released.

Is it easier to create an applet in J# than it is in C#? It looks like

the browser control only works with J#. Is that true?


One more question. Does anyone know if Mono will support applets? If so,

can they be used in browsers other than IE and on the Mac and Linux operating
systems?


Nov 16 '05 #7

"Shaun Williams" <sh****@ichemonline.co.uk> wrote in message
news:OU*************@tk2msftngp13.phx.gbl...
Hello,

I am not quite sure what you mean by 'applets'. If you are coming over from java, you will find there is no direct equivallt of a java applet in .NET.
Your best bet is a web form. Anything you can do in a java applet, you can
do using web forms or web services, and they can run in any of the CLS
languages. If you like C#, you can use it. If you would prefer a more
java-like syntax, use J#.

Also, in response to your second question, as far as I am aware .NET web
applications run on any thin client, not just IE. Why wait for Mono when you already have it.

The above may or may not be strictly true, I don't pretend to be the worlds expert, having only a few months experience with .NET 2003 (I was still
using VC++ and VB version 6 until may)

Shaun Williams

J# supports "Browser Controls". Aren't they the same thing as applets?

If Mono supports these, then it means that they could possible be run under
Mac OSX and Linux, not just Win32 and IE.


Nov 16 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: dxben | last post by:
I am considering a situation where I have (n) number of form windows, each with an instance of the Microsoft Web Browser Control (IE) on each form. In each web browser control is an HTML page that...
1
by: Mark Johnson | last post by:
I wonder if anyone has a solution? I wanted to use the web browser control as a 'zoom' box for a smaller textbox. I can format in the control, and save whatever formatting as HTML code back to the...
0
by: Mark Johnson | last post by:
The last reply got sort of cutoff. So here again: So for anyone interested, here's the simple regexp patterns for the substitutions required. The textbox control is being 'zoomed' in a popup...
1
by: Praveena | last post by:
Hi All, I am developing a Web Page in ASP.NET where i am using a Web Browser control. I created this selecting the "Microsoft Web Browser" in the custom controls. Now the problem is with the...
28
by: BobAchgill | last post by:
Has anyone had success with using this Com control? When I add it into my tool box and drop it into my form it says in the properties that the Document and LocationURL are read only. (they are...
12
by: VJ | last post by:
I am using the web browser control.., I would like to add the control at runtime... I was adding the web browser control at desgin time. Now I decided to add the control at run time so I removed...
1
by: Oenone | last post by:
I've reached the conversion of a part of my application from VB6 to VB.NET which uses the COM Web Browser control to display HTML content generated by my application. The general approach used...
0
by: Pieter | last post by:
Hi, I've a activex browser control in a form. I've added proxy server support to the control by modifying the proxy server settings in the registry. This works fine before the browser control is...
1
by: john conwell | last post by:
I'm using the Browser control to display html that my application generates. Some times i want a javascript to run when the html gets displayed in the browser control, and sometimes i dont. Is...
5
by: jeremy | last post by:
I have an ASP.Net 2.0 application running on Windows Server 2003. The application displays properly in Internet Explorer, however, when I use a browser control embedded in a .net form, I get an...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.