TCP/IP Example Demo for LOCAL HOST/CLIENT Applications - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1) +--- Forum: Code and Stuff (https://qb64phoenix.com/forum/forumdisplay.php?fid=3) +---- Forum: Works in Progress (https://qb64phoenix.com/forum/forumdisplay.php?fid=9) +---- Thread: TCP/IP Example Demo for LOCAL HOST/CLIENT Applications (/showthread.php?tid=1005) |
RE: TCP/IP Example Demo for LOCAL HOST/CLIENT Applications - Kernelpanic - 10-26-2022 Quote:You have two windows open/ In the pick, look at the title bar. It shows the second window is active. You need to click that first widow to make it active, and then type. Damned! What a banality! RE: TCP/IP Example Demo for LOCAL HOST/CLIENT Applications - Pete - 10-27-2022 Yep, the horrors of programming. There have been times I've swore at the computer some trivial thing I messed up in the code is causing the problem, I can can't readily see it. I keep at it, because I know the system isn't the problem. Oh well, we all can be as brilliant as Steve, but thank Go most of us have exceptionally good looks to compensate for that. Pete RE: TCP/IP Example Demo for LOCAL HOST/CLIENT Applications - bplus - 10-27-2022 "Oh well, we all can be as brilliant as Steve, but thank Go most of us have exceptionally good looks to compensate for that. Big Grin" And the others just get a couple of guns to shoot off! RE: TCP/IP Example Demo for LOCAL HOST/CLIENT Applications - Pete - 10-27-2022 Yosemite Sam. Taking video game bullet hell to a whole new level! RE: TCP/IP Example Demo for LOCAL HOST/CLIENT Applications - Pete - 10-28-2022 @Spriggsy There has to be a better way?! I thought for fun I'd try to put in a Windows API method of making the window ready to send the message active. The receiving window would become active when it received the message. So now the user just types. No need to click to activate the window anymore, before typing. So SetActiveWindow and AllowSetForegroundWindow didn't work in this case, so I used a hack that hides, min. and restores the window to mimic the effect. Surely there must be some simple method I'm misssing that could accomplish the some thing without the unwanted special effects. Any ideas? Name and save as messenger_host Code: (Select All) DECLARE DYNAMIC LIBRARY "user32" Name and save as messenger_client Code: (Select All) DECLARE DYNAMIC LIBRARY "user32" Pete RE: TCP/IP Example Demo for LOCAL HOST/CLIENT Applications - Kernelpanic - 10-28-2022 Where are my pictures? Have they all been deleted? RE: TCP/IP Example Demo for LOCAL HOST/CLIENT Applications - Pete - 10-28-2022 Imgbb isn't showing the page that photo was linked to. It seems the page was lost in their database. I checked another post of yours and that pic was still up: https://ibb.co/TWtc6LS This would never happen at my QBasic Forum, for two reasons. 1) Tapatalk hosts all pics posted to our account. 2) There is no one there to posts pics! Well, let's hope this Imgbb glitch doesn't become more prevalent. An alternative to using Imgbb is to link sites from your own site, if you have one, or... what we can all do, add the pics as an attachment instead of choosing "Upload a pic" from the menu bar. Pete RE: TCP/IP Example Demo for LOCAL HOST/CLIENT Applications - Kernelpanic - 10-28-2022 Thanks for the hint! Another picture has disappeared, I noticed it earlier. But I'm not looking at all the pictures now, ne. https://qb64phoenix.com/forum/showthread.php?tid=955&pid=8607#pid8607 RE: TCP/IP Example Demo for LOCAL HOST/CLIENT Applications - Kernelpanic - 10-28-2022 Quote:2) There is no one there to posts pics! Ha-ha-ha! But, a picture says more than a thousand words! Mostly! RE: TCP/IP Example Demo for LOCAL HOST/CLIENT Applications - mnrvovrfc - 10-28-2022 I took the tip here from @Kernelpanic to use the other image-sharing site. It's because I belong to other forums and they're not as lenient as this one uploading content. Most of the time things need to be uploaded fast where the pressure comes from. The quota on this forum is "unlimited" but I'm not going to trust that. It's likely I would go crazy posting ZIP files with source code and related files, such as for a fancy-looking video game... |