PacMan in C#

  • Thread starter Thread starter _V_
  • Start date Start date
V

_V_

Well, I'm not really interested in PacMan. I'm curious about
whether C# is good for java-type graphic-oriented 'applets' that
will play in a browser (from a web page). If so, is this covered in
any books? Most of the web-based C# apps that I have seen are
text-based HTML/ASP.
 
Hi,
No there is no equivalent of an "applet" in .NET, check out activex
controls.

Cheers
Benny
 
Benny Mathew said:
Hi,
No there is no equivalent of an "applet" in .NET, check out activex
controls.

Thats not quite correct. While there is nothing exactly equivlent to an
applet, it is possible to embed Winform Control derived objects into a page.
This is not the same as an activex control.
 
how about a user control, it may not be like an applet i
but you can use it in your web page

Also check out "Real time .NET applications " by Budi
Kurniawan, Apress publications, it has a pac man style
game in VB.NET (the code is available for download)
if by any chance you get interested in Pac man

tribal
 
Back
Top