Nine Posted March 31, 2023 Author Share 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 Link to comment Share on other sites More sharing options...
VAN0 Posted February 11 Share Posted February 11 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... Link to comment Share on other sites More sharing options...
Nine Posted February 11 Author Share Posted February 11 (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 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 Link to comment Share on other sites More sharing options...
VAN0 Posted February 11 Share Posted February 11 (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 by VAN0 Link to comment Share on other sites More sharing options...
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