| Author |
Message |
Topic: Breaking an infinite loop with keypress |
ScottEdge
Replies: 3
Views: 778
|
Forum: Ask for Help Posted: Wed May 16, 2007 3:54 pm Subject: Breaking an infinite loop with keypress |
For future reference I found I had to put a sleep in my loop for this to work.
LOOP
{
if (BreakLoop = 1)
break
SEND,{END}
SEND,{SPACE}
SEND,{DOWN ... |
Topic: ODBC to CSV, XLS, or HTML |
ScottEdge
Replies: 7
Views: 3159
|
Forum: Utilities & Resources Posted: Sun Mar 11, 2007 7:47 pm Subject: Another ODBC utitlity |
I ran across this utility outside of AHK but twhyman did talk about it in this post
ODBC SQL runner is the command line tool for run SQL statements using ODBC32 data sources.
Usage:
sqlrun
... |
Topic: CMD on network comptuer [solved] |
ScottEdge
Replies: 1
Views: 145
|
Forum: Ask for Help Posted: Fri Feb 16, 2007 8:08 pm Subject: CMD on network comptuer [solved] |
http://www.microsoft.com/technet/sysinternals/utilities/psexec.mspx
found it |
Topic: CMD on network comptuer [solved] |
ScottEdge
Replies: 1
Views: 145
|
Forum: Ask for Help Posted: Fri Feb 16, 2007 7:56 pm Subject: CMD on network comptuer [solved] |
| I know it is on the forum somewhere but I can't find the software program that allows you to call command lines on a network computer. Can someone help me with this. i.e. the king of Command Line tool ... |
Topic: Is FTP protocol support possible? |
ScottEdge
Replies: 4
Views: 290
|
Forum: Ask for Help Posted: Thu Dec 21, 2006 1:21 pm Subject: Is FTP protocol support possible? |
Windos FTP doesn't support passive mode so if that is going to be a problem you might want to check this out
http://www.autohotkey.com/forum/viewtopic.php?t=15015 |
Topic: MoveitFreely FTP command line tool with Passive Mode |
ScottEdge
Replies: 0
Views: 872
|
Forum: Utilities & Resources Posted: Tue Dec 19, 2006 1:58 pm Subject: MoveitFreely FTP command line tool with Passive Mode |
| MOVEit Freely can safely exchange files with secure FTP servers that support 128-bit key SSL (Secure Socket Layer) encrypted transfers, the highest level of protection currently available for Interne ... |
Topic: Javascript for GMail Login? |
ScottEdge
Replies: 10
Views: 1582
|
Forum: Ask for Help Posted: Sun Dec 10, 2006 3:51 am Subject: Javascript for GMail Login? |
| javascript:with(document.forms[0]){elements[7].value="youremail@gmail.com";elements[8].value="password";void(0)} |
Topic: Preformatted Output |
ScottEdge
Replies: 13
Views: 622
|
Forum: Ask for Help Posted: Sun Dec 03, 2006 7:42 am Subject: Preformatted Output |
I guess just have the code append the HTML code to the text file ... hmm...
Not familiar with tables and lining things up via html though, but this is an awesome finally rational point to start fr ... |
Topic: Preformatted Output |
ScottEdge
Replies: 13
Views: 622
|
Forum: Ask for Help Posted: Sun Dec 03, 2006 7:19 am Subject: Preformatted Output |
| if you give me a sample of how you are appending your data I could possibly give you an example. |
Topic: Preformatted Output |
ScottEdge
Replies: 13
Views: 622
|
Forum: Ask for Help Posted: Sun Dec 03, 2006 1:27 am Subject: Preformatted Output |
You could always just file append the information as an html table and then open it in explorer or firefox to print.
Its easy to make a table if you don't know how here is a site that builds tables ... |
Topic: use .ini file for database? |
ScottEdge
Replies: 6
Views: 365
|
Forum: Ask for Help Posted: Sun Dec 03, 2006 12:59 am Subject: use .ini file for database? |
you could uses Titans XML Explorer
http://www.autohotkey.com/forum/viewtopic.php?t=9945xml+explorer |
Topic: Using one line JavaScript code to manipulate Web pages |
ScottEdge
Replies: 35
Views: 3634
|
Forum: Ask for Help Posted: Fri Dec 01, 2006 6:32 am Subject: Using one line JavaScript code to manipulate Web pages |
| I didn't write the code guest_peacherwu did. PhiLho what you modified rules. I'll use that often thanks~ |
Topic: What's the best way to use AHK as a SQL-Like tool? |
ScottEdge
Replies: 4
Views: 297
|
Forum: Ask for Help Posted: Thu Nov 30, 2006 5:36 am Subject: What's the best way to use AHK as a SQL-Like tool? |
you could just use SQL with an include
http://www.autohotkey.com/forum/viewtopic.php?t=12752sql |
Topic: controlsend (or equiv) on jscript web page help needed |
ScottEdge
Replies: 46
Views: 2290
|
Forum: Ask for Help Posted: Thu Nov 30, 2006 5:28 am Subject: controlsend (or equiv) on jscript web page help needed |
| I haven't tried this with frames but if you paste this java code(which was posted here somewhere on the forum by another user maybe even philo the java king) it lists all element numbers and names. O ... |
Topic: IE + ControlSendRaw |
ScottEdge
Replies: 12
Views: 413
|
Forum: Ask for Help Posted: Wed Nov 29, 2006 1:42 am Subject: IE + ControlSendRaw |
ie = Microsoft Internet Explorer
WinActivate %ie%
WinWaitActive, %ie%
StatusBarWait, Done, 60, , %ie%,
ControlSetText Edit1, javascript:with(document.forms[0]){elements& ... |
| |