CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2000
    Location
    Pune,India
    Posts
    3

    Inter-Applet Communication

    Hi CodeGuru,

    I have a problem.

    I need to do a showDocument(xxx.html) in my program to launch a new instance of the applet embedded in xxx.html in a separate browser frame.
    But the applet embedded inside the html expects certain parameters. How do i pass those parameters to the applet in or after the call to
    showDocument() ?



  2. #2
    Join Date
    Dec 1999
    Location
    Chonghe, Taipei County, Taiwan, R.O.C.
    Posts
    231

    Re: Inter-Applet Communication

    There are two ways to do this job. One, you may use LiveConnect to convey
    the parameters between these two applets. You may refer to the Javascript about
    LiveConnect. Two, If they are on the same codebase, you may use the intermediate
    class which is used to take the parameter values that applets use.
    good luck,
    Alfred Wu


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