Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
open multiple screens at once
#1
Anyone else experiment with different ways to have multiple screens open at a time using QB64?  I've experimented with using The clipboard to send data from one QB64 app to another and it generally works but is of course prone to issues if there are other apps running that use the clipboard. Reading and writing to the same files as a way to get it done as well. What I've seen but am not apt with at all is sending data through networking schemes. Anyone have any tips or tricks they've used to do this?
Reply
#2
The only two screens that you can really have at the same time in one program is the CONSOLE and the main SCREEN.

Otherwise, you're going to have to use some trick like what you're talking about -- two separate programs running and talking via file, clipboard, or networking.

Here's an example of a multi-screen program using TCP/IP connections to communicate between both programs.  https://qb64phoenix.com/forum/showthread.php?tid=2858
Reply
#3
Other ways include:

Spriggsy's Pipecom routine: https://qb64phoenix.com/forum/showthread...1#pid27211

And using SHELL to open as many windows as you want. You just have to communicate via a database they all share.

Pete
Shoot first and shoot people who ask questions, later.
Reply




Users browsing this thread: 1 Guest(s)