September 23rd, 1999, 02:35 AM
How Ii do can add new Parameter in a Applet Component?
|
Click to See Complete Forum and Search --> : Java September 23rd, 1999, 02:35 AM How Ii do can add new Parameter in a Applet Component? unicman September 23rd, 1999, 08:32 AM What exactly do u want? If u want to specify a parameter to the applet from HTML page, u will need to give 'param' tag in the applet e.g. <applet ....> <param name='...' value='....'> <param name='...' value='....'> .... </applet> And if u need to access the specified parameters inside the applet, u will need to use 'getParameter()' method. Specify the name of the parameter, to the method and it will return u the value. I hope this answers ur query. - UnicMan http://members.tripod.com/unicman codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |