Nine Posted March 31, 2023 Author Posted March 31, 2023 Not doing it. But nothing stops you to modify it as you want... “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy
VAN0 Posted February 11, 2024 Posted February 11, 2024 Is the "data" property lost on client side when sent by server via _WCD_Send()? I can't seem to find it on client side...
Solution Nine Posted February 11, 2024 Author Solution Posted February 11, 2024 (edited) Data property should be in @extended (as a numeric value). ; From the example script ; Modified WaitForResponse to return @extended ... $sString = WaitForResponse () ConsoleWrite (@extended & "/" & $sString & @CRLF) Func WaitForResponse () Local $sResp While _WCD_IsServerAvailable () $sResp = _WCD_Client_GetResponse () If @extended Or $sResp Then Return SetExtended(@extended, $sResp) Sleep (100) WEnd EndFunc Edited February 11, 2024 by Nine “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy
VAN0 Posted February 11, 2024 Posted February 11, 2024 (edited) I'm using this on server side: _WCD_SEND($hServer, $hClient, 123, "foo") and on client side $sResp returns "foo", but @extended always returns 0 NVM, I had another function call before I checked the @extended macro...my bad. Edited February 11, 2024 by VAN0
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now