Jump to content

TheDcoder

Active Members
  • Posts

    7,103
  • Joined

  • Days Won

    88

Everything posted by TheDcoder

  1. Still I need to hear what you are talking about, else i can't sit watching you doing something with your GUI
  2. @Xandy I can't hear you, the audio is too low for my laptop
  3. Nope, Just SoundPlay() on a line, TD
  4. Wow! Great! I got the info which I need for my project Thanks @leuce! TD
  5. Make UDF Header has 2 errors: 1. It deletes the Func line 2. $b means boolen not binary, binary is $d hope you fix this soon, TD
  6. @lordsocke You need: For NextFileReadToArrayShellExecuteThat's all you need, TD
  7. Released new version , Change log: Added _Process_DebugRunCommand (Modified version of DebugRunCommand in the example) Updated functions, now all set @error to non-zero on failure Some minor improvements, TD
  8. ; I don't use fullstops in single line comments #cs But I do proper puntuation in multi-line comments, it looks neat too. #ce
  9. Ahhh.... I am still experimenting but I ran out of time , I need to go to bed. I will try to solve this issue tomorrow TD
  10. @SkythekidRS I am experimenting with TCP now, I will post a solution once I figure out the problem
  11. Crap, Replace <> with = I forgot to change those, TD
  12. @SkythekidRS Hmmm... try replacing Null with "Complete"
  13. Try this: server.au3: TCPStartup() $ip='192.168.1.4' $listen=TCPListen($ip,4444) Do $socket=TCPAccept($listen) $data=TCPRecv($socket,1342177280) Until $data<>Null $op=FileOpen('khang.jpg',18) FileWrite($op,$data)client.au3 TCPStartup() $ip='192.168.1.4' $op=FileOpen('IMG_2474.JPG',16) $connect=TCPConnect($ip,4444) TCPSend($connect,FileRead($op)) TCPSend($connect,Null) FileClose($op) TD
  14. Can you show us the full code used to send the picture? We can't help you without any code TD
  15. TheDcoder

    RegEx course

    @guinness Thanks , Just completed the first chapter , I need to pay to continue which I don't think I will... The regex lesson was easy for me though. TD
  16. TheDcoder

    RegEx course

    @guinness Ohhhh, You don't understand RegEx too? Is it hard for you to learn? How would you rate the difficulty in learning RegEx (from your point of view)? Sorry for the questions, Thanks for sharing, TD
  17. I am getting an version error on Media Info CLI , I already checked it if i had downloaded the right version, here is what I downloaded from here: Windows XP, Vista, 7, 8 ---> 64-bit ---> CLI ---> v0.7.76 TD
  18. @Surya It took me a while to understand the code, Its what I wanted
  19. Dynamic no. of parameters because if the user of the "User Defined Functions" wants different pieces of information for his "defined function"
  20. _SomeUDF_SetCallbackOnSomeEvent("FunctionToBeCalled", $aParametersOfTheFunction)instead of _SomeUDF_SetCallbackOnSomeEvent("FunctionToBeCalled", "Parameter 1", "Parameter 2") ; Fixed number of parametersTD
×
×
  • Create New...