| Author |
Message |
Topic: SciTE4AutoHotkey v2 Stable - Released. |
Leonidas225
Replies: 129
Views: 22602
|
Forum: Scripts & Functions Posted: Sun May 17, 2009 10:46 pm Subject: SciTE4AutoHotkey v2 Stable - Released. |
| in metapad u can lunch your script with a hotkey. is it possible with SciTe4Autohotkey? is it possible the change the colors? |
Topic: ADO COM - Database Query |
Leonidas225
Replies: 107
Views: 19708
|
Forum: Scripts & Functions Posted: Sun Apr 26, 2009 3:13 pm Subject: ADO COM - Database Query |
Replace the following with your own one
sData .= COM_Invoke(pField, "Name") . ": " . COM_Invoke(pField, "Value") . "`r`n"
Which part ... |
Topic: File Browser |
Leonidas225
Replies: 2
Views: 157
|
Forum: Ask for Help Posted: Sun Apr 26, 2009 4:30 am Subject: File Browser |
| my script expect a pqth to look up for a txt. i dont want the user to type it in every time. is there out any file/directory browser script what i can build it in to my GUI? |
Topic: ADO COM - Database Query |
Leonidas225
Replies: 107
Views: 19708
|
Forum: Scripts & Functions Posted: Sun Apr 26, 2009 3:43 am Subject: ADO COM - Database Query |
| nice script! i tried out the script from the first post. works fine but i have some performance issues: if i make a query with a larger result 150 by 15 fields it takes forever. the connection to the ... |
Topic: Selecting in a txt database |
Leonidas225
Replies: 7
Views: 282
|
Forum: Ask for Help Posted: Sat Mar 28, 2009 2:06 am Subject: Selecting in a txt database |
I think you meant 2nd column = "FALSE" (those are the numbers you listed)
yeah of course. my mistake. ty it works fine!! |
Topic: Selecting in a txt database |
Leonidas225
Replies: 7
Views: 282
|
Forum: Ask for Help Posted: Sat Mar 28, 2009 1:27 am Subject: Selecting in a txt database |
the expected output of the message box:
25403501
85353158
35803125
25433191
A list of only the ID's where
the 2nd column = "TRUE" AND (the 3rd coulomn =$55 OR $42) |
Topic: Selecting in a txt database |
Leonidas225
Replies: 7
Views: 282
|
Forum: Ask for Help Posted: Sat Mar 28, 2009 12:53 am Subject: Selecting in a txt database |
This would be MUCH easier in python...
any other "useful" suggestion? |
Topic: Selecting in a txt database |
Leonidas225
Replies: 7
Views: 282
|
Forum: Ask for Help Posted: Fri Mar 27, 2009 11:38 pm Subject: Selecting in a txt database |
List=
(
75313271 TRUE $55
75472340 FALSE $70
25403501 FALSE $55
35452076 TRUE $42
95703195 FALSE $70
85353158 FALSE $42
35452076 TRUE $42
35803125 FALSE $55
25433191 FALSE $42
... |
Topic: remove an element from a list |
Leonidas225
Replies: 3
Views: 112
|
Forum: Ask for Help Posted: Fri Mar 27, 2009 2:22 pm Subject: remove an element from a list |
list =
(
234586
213511
072441
124128
214199
)
how can i remove "072441" the new list should look like this:
234586
213511
124128
214199
i tried with
StringReplace, list ... |
Topic: Hide window befor it pops up |
Leonidas225
Replies: 7
Views: 406
|
Forum: Ask for Help Posted: Fri Mar 27, 2009 11:53 am Subject: Hide window befor it pops up |
Is it possible to open a window an hide it immediately before it pops up?
ControlClick, OpenWin2Button, Win1
;;Window pops up for a sec
WinHide, Win2
Sleep, 3000
WinShow, Win2
2nd question ... |
Topic: GetText from MFC control |
Leonidas225
Replies: 0
Views: 270
|
Forum: Ask for Help Posted: Sat Mar 21, 2009 10:00 pm Subject: GetText from MFC control |
I try to get out text from a ListView but it returns empty string.
ahk_class AfxFrameOrView80su
ClassNN: AfxWnd80su35
after some search i found out that this is MFC control and i found this threa ... |
Topic: .NET Framework Interop |
Leonidas225
Replies: 52
Views: 12852
|
Forum: Scripts & Functions Posted: Wed Feb 04, 2009 10:55 pm Subject: .NET Framework Interop |
i have some trouble to call this function:
;the c# code
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace SNGEGT
{
class ICM ... |
| |