CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Java

  1. #1
    Guest

    Java

    How Ii do can add new Parameter in a Applet Component?


  2. #2
    Join Date
    May 1999
    Location
    Pune, MH, India.
    Posts
    453

    Re: Java

    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured