Search found 750 matches

by IMEime
26 Mar 2019, 04:34
Forum: Ask for Help (v1)
Topic: Selecting from array with OR
Replies: 6
Views: 1617

Re: Selecting from array with OR

Code: Select all

myCity := ["Hamburg", "London", "Moscow", "Rio", "Sydney", "Washington"]
myCondition := ["HAMBURG", "LONDON", "SYDNEY"]
For Each, x In myCity
	For Each, y In myCondition
		If(x = y)
			MsgBox % x " is " y
by IMEime
26 Mar 2019, 03:35
Forum: Ask for Help (v1)
Topic: Clipboard is not pasting Topic is solved
Replies: 9
Views: 2531

Re: Clipboard is not pasting Topic is solved

you'd better use simple word 'Thanks'
'감사합니다'라는 다섯 글자를 쓸 줄 모르는 자..
by IMEime
26 Mar 2019, 03:32
Forum: Ask for Help (v1)
Topic: Run .mac files with AHK
Replies: 3
Views: 1245

Re: Run .mac files with AHK

I just tried very simple code of VBScript, too
Because, I have no knowledge about it

In General rules, you Could do it (whatever it is) using another route(languages), I guess

Good Luck To You
by IMEime
25 Mar 2019, 23:00
Forum: Ask for Help (v1)
Topic: Clipboard is not pasting Topic is solved
Replies: 9
Views: 2531

Re: Clipboard is not pasting Topic is solved

iterate the process you wanted, once or several times
Clipboard is one Huge animal, not a simple toy
by IMEime
25 Mar 2019, 22:55
Forum: Ask for Help (v1)
Topic: Code to connect and read + write to a database
Replies: 9
Views: 4733

Re: Code to connect and read + write to a database

good
now you have better understanding about the database of this questioner
by IMEime
25 Mar 2019, 14:03
Forum: Ask for Help (v1)
Topic: work with database access
Replies: 7
Views: 5893

Re: work with database access

or this style (as I wrote earlier, it is quite old..) myConn := ComObjCreate("ADODB.Connection") myConn.Open("Driver={Microsoft Access Driver (*.mdb)}; DBQ=" myMSAccessPath ";") myRS := myConn.Execute(myQuery) While ! myRS.EOF { myResult .= myRS["myColumn"] "`r`n" myRS.MoveNext() } myRS.Close() myRS...
by IMEime
25 Mar 2019, 13:47
Forum: Ask for Help (v1)
Topic: copy images from camera
Replies: 13
Views: 2878

Re: copy images from camera

sounds good
make you own one
by IMEime
25 Mar 2019, 13:27
Forum: Ask for Help (v1)
Topic: work with database access
Replies: 7
Views: 5893

Re: work with database access

one brief (old) code #Include <DBA> myFile := "E:\myMSAccessFile.mdb" myConnection := "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" myFile myDB := DBA.DataBaseFactory.OpenDataBase("ADO", myConnection) myTBL := myDB.Query("SELECT * FROM myTBLName") myCCount := myTBL.Columns.Count() For Each, Row In...
by IMEime
25 Mar 2019, 13:14
Forum: Ask for Help (v1)
Topic: Run .mac files with AHK
Replies: 3
Views: 1245

Re: Run .mac files with AHK

by IMEime
25 Mar 2019, 12:51
Forum: Ask for Help (v1)
Topic: Code to connect and read + write to a database
Replies: 9
Views: 4733

Re: Code to connect and read + write to a database

@SL5
are you sure that so called SQLite_L.ahk is working for MS Access?
I do not think so
by IMEime
25 Mar 2019, 12:50
Forum: Ask for Help (v1)
Topic: Code to connect and read + write to a database
Replies: 9
Views: 4733

Re: Code to connect and read + write to a database

SQLite_L.ahk is a good one
But, its functionality is (quite) limited.
by IMEime
25 Mar 2019, 12:39
Forum: Ask for Help (v1)
Topic: work with database access
Replies: 7
Views: 5893

Re: work with database access

and
As far as I know
ADODB style is a history now
Works only with 32bit AHK (workaround, when exe file, it works with 64bit though).
Sad news.
by IMEime
25 Mar 2019, 12:30
Forum: Ask for Help (v1)
Topic: work with database access
Replies: 7
Views: 5893

Re: work with database access

The first one was really good. I have made several codes using it. But, that was long time ago. I do not know current status. DBA 1.6 (OOP-SQL DataBase {SQLite, MySQL, ADO}) https://autohotkey.com/board/topic/71179-ahk-l-dba-16-oop-sql-database-sqlite-mysql-ado/ https://autohotkey.com/board/topic/90...
by IMEime
25 Mar 2019, 12:16
Forum: Ask for Help (v1)
Topic: work with database access
Replies: 7
Views: 5893

Re: work with database access

Do you mean MS Access ?
by IMEime
18 Mar 2019, 08:55
Forum: Ask for Help (v1)
Topic: Add space after a subdomain in an url. How? Topic is solved
Replies: 15
Views: 3546

Re: Add space after a subdomain in an url. How? Topic is solved

@sinfaze
yes
I am considering a month or two off

Thanks for the kind tip
by IMEime
18 Mar 2019, 08:53
Forum: Ask for Help (v1)
Topic: Need to sum duplicate value and price
Replies: 7
Views: 1671

Re: Need to sum duplicate value and price

what a questioner
by IMEime
18 Mar 2019, 02:27
Forum: Ask for Help (v1)
Topic: Basic operation confused Topic is solved
Replies: 5
Views: 1410

Re: Basic operation confused Topic is solved

Thanks
Good info and nice explanations

I'm having a good time to read HELP document carefully
Should I have any questions again I will be back

Regards

Go to advanced search