• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

only allow one instance of browser running ????

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello --
Is it possible to prevent more than one instance of the browser running? We bring up IE from powerbuilder to bring an applet to life. We don't want multiple instances of the browser running on a client PC. Is there a way to prevent the user from opening multiple instances of the browser?
Thanks for your insight.
 
Ranch Hand
Posts: 42
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think it is highly likely that the operating system would not allow you to prevent a user doing what they want (like loading additional programs).
I don't know how the applet/browser jvm works, but if the jvm is the same for all instances of the browser you can have the applet display some message (detected via a static variable) saying you don't want to have multiple applets open. Lots of other fun stuff can be done too (IIOP/RMI etc).
 
reply
    Bookmark Topic Watch Topic
  • New Topic