• 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
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Mirror application into another one.

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In theory, would it be possible to mirror the screen of one application in another application? Also, on the same machine.

It's just a theoretical question, I haven't really started anything yet, I'm just researching a little bit about it.
I don't know if "screen" is the appropriate term, but I think it was understandable, it's literally showing visually an application and its content within another one (and that you can interact with).

Similar to apps that allow you to view and control the machine remotely, but in that case, control specific software from another and all of that on the same computer.

Thanks,
- Messias.
 
Marshal
Posts: 80138
418
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to the Ranch

You need to separate the code into business logic and display. You should do that anyway, as a principle of good design. Then you create an object to represent the application and you can pass references to that object to several other objects representing displays. One might show it in a frame and the other in an internal frame. You can have a component representing the display and show that display object in several places by a similar process.
I am not sure whether that would be called mirrored applications. It would be the same application appearing in several places, definitely.
 
Bartender
Posts: 15737
368
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, it's possible.

Applications for online conferences often offer the feature to allow another user to control your screen or a specific window or application, so it's definitely possible.

Welcome to CodeRanch!
 
Hey! You're stepping on my hand! Help me tiny ad!
New web page for Paul's Rocket Mass Heaters movies
https://coderanch.com/t/785239/web-page-Paul-Rocket-Mass
reply
    Bookmark Topic Watch Topic
  • New Topic