| Author |
Message |
Forum: Support Topic: At my wits end - compilation issues AHK_L Unicode |
| Static |
|
Posted: July 30th, 2011, 2:39 am
|
|
Replies: 2 Views: 134
|
| Just in case anyone was curious.... Strangely enough, I've figured (something) it out. If I run the compiled file from c:\New Folder, I get: Error: 0x8002000E - Invalid number of parameters. Line# ---> 503: this.tl[curtl, "per", curper, "ppttl"] := Floor(this.tl[curtl, "per&... |
|
 |
Forum: Support Topic: At my wits end - compilation issues AHK_L Unicode |
| Static |
|
Posted: July 29th, 2011, 10:57 pm
|
|
Replies: 2 Views: 134
|
| The current project I am working on is a program that uses excel COM object to to process a file and generate a report from it. When I run the code from source, i.e. run it interpreted, everything works perfectly, no errors. when I try to compile it and run it, it throws com errors such as the one b... |
|
 |
Forum: Support Topic: TrayTip and Detecting a mouseclick |
| Static |
|
Posted: February 11th, 2011, 11:46 pm
|
|
Replies: 3 Views: 330
|
| Thanks HotKeyIt, that works great. I've been trying to play with the struct library some (which I absolutely love), but I cant seem to get the size of my structure. I've tried to follow the examples in the struct thread, and as far as i can tell it should be working, so I'm at a loss. I'm posting my... |
|
 |
Forum: Support Topic: TrayTip and Detecting a mouseclick |
| Static |
|
Posted: February 9th, 2011, 8:49 pm
|
|
Replies: 3 Views: 330
|
| I sure do seem to be posting a lot here lately.. now, this program I could write in VB or C++ because I have done something similar before, I'm trying to write something that will display a traytip and detect a mouse click on it using SetWindowsHookEx and either WHMOUSE_LL or WH_CALLWNDPROC. I spent... |
|
 |
Forum: Support Topic: Warcraft sometimes doesnt respond or responds strangely... |
| Static |
|
Posted: February 6th, 2011, 10:32 am
|
|
Replies: 15 Views: 515
|
| My experience with problems like this has taught me to use multiple send commands when I encounter problems like this. I have no idea if this will fix your problem, but the problem seems to be that Warcraft is not registering the initial enter before the rest of the data is sent. might be worth tryi... |
|
 |
Forum: Support Topic: More Object Syntax help |
| Static |
|
Posted: February 6th, 2011, 10:11 am
|
|
Replies: 8 Views: 278
|
| Good to know.. it would be nice to see a way a to declare an object definition to be a prototype. That is to say that the "object" has no instance, but exists merely to create other instances from. Maybe it would exist as an object plan or something, I have no idea. Not even sure if its po... |
|
 |
Forum: Support Topic: More Object Syntax help |
| Static |
|
Posted: February 5th, 2011, 12:20 pm
|
|
Replies: 8 Views: 278
|
Thanks Jethrow! Works like a charm.
So, am I to understand then that if the object you are working with does not inherit its functions from a base object, that the object is not implicitly passed as the first parameter? Interesting. |
|
 |
Forum: Support Topic: More Object Syntax help |
| Static |
|
Posted: February 5th, 2011, 10:45 am
|
|
Replies: 8 Views: 278
|
| This works: ;#persistent dateobj := Object("tis",0,"hour",0,"min",0,"sec",0,"month",0,"day",0,"year",0) dateobj.Diff := "FuncDiff" sdate := Object("tis",1000,"base",dateobj) edate := O... |
|
 |
Forum: Support Topic: Autohotkey_L and CLR |
| Static |
|
Posted: January 19th, 2011, 9:10 pm
|
|
Replies: 13 Views: 1029
|
| Curious. Are you using the ANSI build? I started with the unicode build, but when i couldnt get it to work, i figured using ansi would eliminate one level of complexity in the program. Process of elimination. also, when I just switched to the unicode i got an interpreter error that the COM_Ansi4Uni... |
|
 |
Forum: Support Topic: Autohotkey_L and CLR |
| Static |
|
Posted: January 19th, 2011, 7:29 am
|
|
Replies: 13 Views: 1029
|
| oh crap. i was looking at the Join dates instead of the posted by dates :) i saw the last post as being in 2006 and the last update as being 2010, so i thought the discrepancy was because he edited his post with the autokotkey_l script. I was thinking, I didnt even know it had been out that long :) ... |
|
 |
Forum: Support Topic: Autohotkey_L and CLR |
| Static |
|
Posted: January 19th, 2011, 7:11 am
|
|
Replies: 13 Views: 1029
|
it is Autohotkey_L 1.0.90.00. I know that it has some COM functionality built in, but the function calls in the CLR Lib still use some functions form the COM lib. Both the COM lib and the CLR lib are the _L versions.
Thanks |
|
 |
Forum: Support Topic: Autohotkey_L and CLR |
| Static |
|
Posted: January 19th, 2011, 5:00 am
|
|
Replies: 13 Views: 1029
|
| I've realized that I have absolutely no idea what I'm doing when I am trying to use the CLR library to instantiate a System.Net.Webclient object. I'm pretty sure I just don't know the right syntax, and the examples in the thread weren't helping me. I even tried using the XPtable.dll example, but got... |
|
 |
Forum: Support Topic: COM/ADO Library + RecordSet.AddNew usage |
| Static |
|
Posted: October 5th, 2010, 12:22 am
|
|
Replies: 5 Views: 243
|
| That works perfectly, Thanks much |
|
 |
Forum: Support Topic: COM/ADO Library + RecordSet.AddNew usage |
| Static |
|
Posted: October 4th, 2010, 10:12 pm
|
|
Replies: 5 Views: 243
|
| Thanks to both, that is exactly the thread i am basing my attempts on :). I decided to just try it out and see what I got, so here is my code so far. using a simple access database with a table with 3 fields, Company, Last Name, First Name. (No ID column) #include ODBCLib.ahk OnExit, ExitSub ;8+10+1... |
|
 |
Forum: Support Topic: COM/ADO Library + RecordSet.AddNew usage |
| Static |
|
Posted: October 4th, 2010, 7:58 pm
|
|
Replies: 5 Views: 243
|
| Im working on writing some code to allow me to use the RecordSet.AddNew Function using the COM ahk library. The command accepts two arrays as parameters, such as below: varfields=Array("ProductName","Prize","Quantity") varvalues=Array("Chang","... |
|
 |
| Sort by: |