AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Search found 581 matches
AutoHotkey Community Forum Index
Author Message
  Topic: AHKsock - A simple AHK implementation of Winsock (TCP/IP)
TheGood

Replies: 128
Views: 19445

PostForum: Scripts & Functions   Posted: Thu Feb 10, 2011 10:25 pm   Subject: AHKsock - A simple AHK implementation of Winsock (TCP/IP)
My understanding of this
Yup, exactly! It's a little complicated, but basically if you fill up the buffer in one shot, the next send() will return WSAEWOULDBLOCK. But at the same time, the recipient ...
  Topic: AHKsock - A simple AHK implementation of Winsock (TCP/IP)
TheGood

Replies: 128
Views: 19445

PostForum: Scripts & Functions   Posted: Wed Feb 09, 2011 10:56 pm   Subject: AHKsock - A simple AHK implementation of Winsock (TCP/IP)
can anyone help with my above question ?

Thanks Smile
As OceanMachine said, you can't just do
if (data = "ÿýÿý ÿý#ÿý'"){
sTest =
AHKsock_Send(s ...
  Topic: RemoteAHK - Execute AHK scripts on remote computers (TCP/IP)
TheGood

Replies: 19
Views: 4683

PostForum: Scripts & Functions   Posted: Wed Feb 02, 2011 10:22 pm   Subject: RemoteAHK - Execute AHK scripts on remote computers (TCP/IP)
Where I'm wrong?
Looks like a Unicode issue. Right now RemoteAHK only works with AHK Basic, or AHK_L x86 ANSI, which means that you need to download that version of AHKsock.
  Topic: AHKsock - A simple AHK implementation of Winsock (TCP/IP)
TheGood

Replies: 128
Views: 19445

PostForum: Scripts & Functions   Posted: Wed Feb 02, 2011 10:19 pm   Subject: AHKsock - A simple AHK implementation of Winsock (TCP/IP)
I am trying with this. This is where I'm now at :

#Include AHKsock.ahk
#Persistent
#SingleInstance, Off


Gui,Destroy
Gui,Add,Edit, w800 h400 hwndLogHwnd
Gui,Show,,TEST

AHKsock_Connect ...
  Topic: USB-UIRT Function Library, Direct IR Remote, AHK interaction
TheGood

Replies: 17
Views: 2954

PostForum: Scripts & Functions   Posted: Thu Jan 27, 2011 11:55 pm   Subject: USB-UIRT Function Library, Direct IR Remote, AHK interaction
Nice! I'll test it later.
Did this allow you to catch that ever-elusive Power button on your remote?
  Topic: RemoteAHK - Execute AHK scripts on remote computers (TCP/IP)
TheGood

Replies: 19
Views: 4683

PostForum: Scripts & Functions   Posted: Tue Jan 25, 2011 9:01 pm   Subject: RemoteAHK - Execute AHK scripts on remote computers (TCP/IP)
But I was asking about the Remote Control ll software I posted a link to above.
Sorry, I'm still not clear on what you're trying to do. Do you want to build something that will send commands just lik ...
  Topic: GDI+ standard library 1.45 by tic
TheGood

Replies: 918
Views: 139708

PostForum: Scripts & Functions   Posted: Mon Jan 24, 2011 10:32 pm   Subject: GDI+ standard library 1.45 by tic
A lot of handle types are 32-bit even under 64-bit. So there's no harm in leaving those as uint.
Also, I forgot to say that this is an older version, not 1.43.
  Topic: GDI+ standard library 1.45 by tic
TheGood

Replies: 918
Views: 139708

PostForum: Scripts & Functions   Posted: Mon Jan 24, 2011 10:26 pm   Subject: GDI+ standard library 1.45 by tic
I'm interested in 64 bit version of tic's Gdip library. I'd really like to get mouse enhancer working again.+1 Wink
+1 as well!
Right now, I'm using a handicapped 64-bit version in which I only conver ...
  Topic: GDI+ standard library 1.45 by tic
TheGood

Replies: 918
Views: 139708

PostForum: Scripts & Functions   Posted: Mon Jan 24, 2011 10:21 pm   Subject: GDI+ standard library 1.45 by tic
I'm interested in 64 bit version of tic's Gdip library. I'd really like to get mouse enhancer working again.+1 Wink
+1 as well!
Right now, I'm using a handicapped 64-bit version in which I only conver ...
  Topic: microsoft updates
TheGood

Replies: 2
Views: 415

PostForum: Ask for Help   Posted: Mon Jan 24, 2011 9:55 pm   Subject: microsoft updates
Try
Run, wuapp
Smile
  Topic: Listview click problem
TheGood

Replies: 3
Views: 293

PostForum: Ask for Help   Posted: Mon Jan 24, 2011 9:42 pm   Subject: Listview click problem
You should do away with handling the "I" event. It's conflicting with the DoubleClick event. Try this instead:

gui, add, listview, w300 h100 vtodaylist gtodaylist nosort NoSortHdr grid Al ...
  Topic: RemoteAHK - Execute AHK scripts on remote computers (TCP/IP)
TheGood

Replies: 19
Views: 4683

PostForum: Scripts & Functions   Posted: Mon Jan 24, 2011 9:23 pm   Subject: RemoteAHK - Execute AHK scripts on remote computers (TCP/IP)
Be able to launch AHK subroutines through a network connection from an old Ipaq.
If the Ipaq can run AHK and can see the target machine, then it would be a piece of cake with RemoteAHK.
  Topic: AHKsock - A simple AHK implementation of Winsock (TCP/IP)
TheGood

Replies: 128
Views: 19445

PostForum: Scripts & Functions   Posted: Fri Jan 21, 2011 10:14 pm   Subject: AHKsock - A simple AHK implementation of Winsock (TCP/IP)
There was a little bug in Example 1. The static variable bDataSent was being set back to 0 at every SEND event, which was obviously wrong. It just was never caught because AHKsock_Send() has always be ...
  Topic: AHKHID not seeing device.
TheGood

Replies: 6
Views: 528

PostForum: Ask for Help   Posted: Fri Jan 21, 2011 12:58 am   Subject: AHKHID not seeing device.
After going through the source code of HidTest, it became obvious what the problem was. It doesn't use the same interface at all. It uses much more powerful [url=http://msdn.microsoft.com/en-us/librar ...
  Topic: AHKHID not seeing device.
TheGood

Replies: 6
Views: 528

PostForum: Ask for Help   Posted: Thu Jan 20, 2011 11:25 pm   Subject: AHKHID not seeing device.
Looking at this chart I was able to find what all the usage pages are for.
Very interesting document. I'll add it to my collection. Smile

From what you've said, I also believe AHKHID should be able t ...
 
Page 1 of 39 Goto page 1, 2, 3 ... 37, 38, 39  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group