Jump to content

toilatoi

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by toilatoi

  1. @Danp2 how to double click with udf, i only see simple one click at _WD_ElementAction, please help, thanks.
  2. who can help me a code simple open firefox portable, type addressbar go to http://gmail.com and type use pass, I new with iuiautomation, and don't know it. thank so much.
  3. I want send a REQUEST and RESPONSE via TCP/IP connections. Here my code but it not work. please help me. Thank for all. Global $MainSocket Local $MaxLength = 1512; Maximum Length Of Text Local $Port = 3333; Port Number Local $Server = '192.168.1.59'; Server IpAddress TCPStartup() $MainSocket = TCPConnect($Server, $Port) If $MainSocket = -1 Then Exit MsgBox(16, "Error", "Unable to connect.") Local $Data1 ='{"id":0,"jsonrpc":"2.0","method":"miner_getstat1"}' TCPSend($MainSocket, "miner_restart") TCPCloseSocket($MainSocket) $Data = TCPRecv($MainSocket, $MaxLength) MsgBox(0, "Received Packet", $Data)
×
×
  • Create New...