| Author |
Message |
Topic: AHKsock - A simple AHK implementation of Winsock (TCP/IP) |
Mustang
Replies: 128
Views: 19445
|
Forum: Scripts & Functions Posted: Wed May 11, 2011 2:17 pm Subject: AHKsock - A simple AHK implementation of Winsock (TCP/IP) |
| Would be nice to see UDP support |
Topic: COM Standard Library |
Mustang
Replies: 645
Views: 172251
|
Forum: Scripts & Functions Posted: Mon May 11, 2009 5:11 am Subject: COM Standard Library |
I did have it, but it wasn't registered
Now it is and now COM_CreateObject returns a pointer value
However
nCommID returns -1
and
nCommPort returns 1
Trying to pass nCommPort, or a manua ... |
Topic: COM Standard Library |
Mustang
Replies: 645
Views: 172251
|
Forum: Scripts & Functions Posted: Sun May 10, 2009 2:37 pm Subject: COM Standard Library |
Yes it would seem to be the case
As I say, I'm trying to get Sean's example to run |
Topic: COM Standard Library |
Mustang
Replies: 645
Views: 172251
|
Forum: Scripts & Functions Posted: Sun May 10, 2009 7:30 am Subject: COM Standard Library |
I was originally struggling to find a copy of CoHelper with the DispParams function
But trying out the code posted above hits me with this:
Function Name: "CommID"
ERROR: The COM Object ... |
Topic: COM Standard Library |
Mustang
Replies: 645
Views: 172251
|
Forum: Scripts & Functions Posted: Sun May 10, 2009 4:50 am Subject: COM Standard Library |
I'm not sure if it's due to being a virtual port rather than physical
But running this script gives an error:
There is a problem with Serial Port communication.
Failed Dll BuildCommDCB, BCD_Result= ... |
Topic: COM Standard Library |
Mustang
Replies: 645
Views: 172251
|
Forum: Scripts & Functions Posted: Sun May 10, 2009 4:05 am Subject: COM Standard Library |
Is there a translated/updated version of MSCOMM32.OCX available?No, it's pointless now.
What would you suggest for communication between an AHK script and a virtual com port then?
The kind that woul ... |
Topic: COM Standard Library |
Mustang
Replies: 645
Views: 172251
|
Forum: Scripts & Functions Posted: Sat May 09, 2009 9:47 am Subject: COM Standard Library |
| Is there a translated/updated version of [url=http://www.autohotkey.com/forum/viewtopic.php?p=132811#132811]MSCOMM32.OCX available? |
Topic: Microphone Peak Value - Vista Audio (Lexikos) |
Mustang
Replies: 2
Views: 1099
|
Forum: Ask for Help Posted: Fri Sep 19, 2008 1:05 am Subject: Microphone Peak Value - Vista Audio (Lexikos) |
| Or maybe someone can tell me how to do this without using COM functions? |
Topic: copy and paste |
Mustang
Replies: 2
Views: 812
|
Forum: Ask for Help Posted: Fri Sep 19, 2008 1:00 am Subject: copy and paste |
| Sounds like you would be better off using FileMove or FileMoveDir |
Topic: String Replace Percent Sign |
Mustang
Replies: 9
Views: 1099
|
Forum: Ask for Help Posted: Fri Sep 19, 2008 12:43 am Subject: String Replace Percent Sign |
It was just an example
If you need more help I suggest providing a better explanation of what you are trying to achieve
Or even post what code you have so far |
Topic: Scripts switching between scripts |
Mustang
Replies: 6
Views: 526
|
Forum: Ask for Help Posted: Wed Sep 17, 2008 3:57 am Subject: Scripts switching between scripts |
Loop
{
; Script A
ImageSearch, OutputVarX, OutputVarY, X1, Y1, X2, Y2, ImageFile
If ( ErrorLevel = 0 ) ; Image Found
{
; Script B
}
} |
Topic: Alternatives to If and Else? |
Mustang
Replies: 3
Views: 485
|
Forum: Ask for Help Posted: Wed Sep 17, 2008 3:35 am Subject: Alternatives to If and Else? |
http://en.wikipedia.org/wiki/Prettyprint
http://www.autohotkey.com/forum/viewforum.php?f=1 |
Topic: Why does ahk overflow on this gui after gui.nr 99 |
Mustang
Replies: 9
Views: 602
|
Forum: Ask for Help Posted: Wed Sep 17, 2008 3:26 am Subject: Why does ahk overflow on this gui after gui.nr 99 |
To create more than 99 Gui's you have to destroy some open one's
Problem solved? |
Topic: String Replace Percent Sign |
Mustang
Replies: 9
Views: 1099
|
Forum: Ask for Help Posted: Wed Sep 17, 2008 3:17 am Subject: String Replace Percent Sign |
Like this?
OriginalText := "The student got 100% on the test."
StringReplace, ReplacedText, OriginalText, `%, {PERCENT SIGN}, All
MsgBox, Original Text: %OriginalText%`n ... |
Topic: Scripts switching between scripts |
Mustang
Replies: 6
Views: 526
|
Forum: Ask for Help Posted: Wed Sep 17, 2008 3:12 am Subject: Scripts switching between scripts |
It's a little hard to understand what you are requesting
Maybe something like this:
Loop
{
Loop, 100
{
; Script A
}
; Script B
}
Here is an exam ... |
| |