Hi, is there a way to connect database with password?
I created database.db with password when I connect the msgbox shows that: file is not a database.
I created the same db without password it works, I can get the information.
How can get working the connection db with password ?
Search found 16 matches
- 19 Dec 2020, 07:05
- Forum: Scripts and Functions
- Topic: [Class] SQLiteDB - Update on 2019-12-12
- Replies: 234
- Views: 71318
- 04 Oct 2020, 20:45
- Forum: Gaming
- Topic: Toggle that will send F1,F2 and F3 at set intervals!
- Replies: 1
- Views: 39
Re: Toggle that will send F1,F2 and F3 at set intervals!
Example with SetTimer WheelUp:: ToolTip, Timer Initialized SetTimer, t1, 8000 SetTimer, t2, 7000 SetTimer, t3, 2000 Sleep, 1000 ToolTip, Return WheelDown:: ToolTip, Timer will be off Sleep, 2000 ToolTip SetTimer, t1, Off SetTimer, t2, Off SetTimer, t3, Off Return t1: SendInput, {F1} Return t2: SendI...
- 04 Oct 2020, 19:25
- Forum: Gaming
- Topic: eazy combo in hftf
- Replies: 1
- Views: 43
Re: eazy combo in hftf
something like this:
Code: Select all
q::SendInput, ad
- 30 Sep 2020, 07:54
- Forum: Ask For Help
- Topic: Problem with multiple hotstrings Topic is solved
- Replies: 3
- Views: 36
Re: Problem with multiple hotstrings Topic is solved
Because you put return
Code: Select all
Loop, 9
Hotstring(":X*:dt" A_Index, "thisLabel2")
Hotstring(":X*:dd" A_Index, "thisLabel2")
return
- 21 Sep 2020, 11:47
- Forum: Pedir Ayuda
- Topic: Ejecutar script local hacia servidor Topic is solved
- Replies: 2
- Views: 271
Re: Ejecutar script local hacia servidor Topic is solved
Intenta ejecutar como administrador tu_script.ahk (click derecho en el archivo , ejecutar como Administrador )
- 03 Apr 2020, 07:30
- Forum: Ask For Help
- Topic: Redraw Listview in main gui help. Topic is solved
- Replies: 9
- Views: 658
Re: Redraw Listview in main gui help. Topic is solved
Thanks!, I really appreciate your Help, It's working now.



- 01 Apr 2020, 22:52
- Forum: Ask For Help
- Topic: Redraw Listview in main gui help. Topic is solved
- Replies: 9
- Views: 658
Re: Redraw Listview in main gui help. Topic is solved
I was testing , so nop LV_Delete() not working.
- 01 Apr 2020, 22:03
- Forum: Ask For Help
- Topic: Redraw Listview in main gui help. Topic is solved
- Replies: 9
- Views: 658
Re: Redraw Listview in main gui help. Topic is solved
just show the first loaded values when first time called main gui. But i checked the array and it is inserted fine. the redraw not working
- 01 Apr 2020, 21:38
- Forum: Ask For Help
- Topic: Redraw Listview in main gui help. Topic is solved
- Replies: 9
- Views: 658
Re: Redraw Listview in main gui help. Topic is solved
This is the part of main Gui. works fine when it is loaded. But i want to redraw with the new values inserted from gui2. MainWin: Gui Add, GroupBox, x8 y2 w440 h438 Gui Add, Text, x17 y9 w120 h23 +0x200, Med Gui Add, ListView, x16 y32 w415 h400 AltSubmit -Multi gDoubleTest vListaMed,Cod|Desc|Entr|Dx...
- 01 Apr 2020, 20:51
- Forum: Ask For Help
- Topic: Redraw Listview in main gui help. Topic is solved
- Replies: 9
- Views: 658
Redraw Listview in main gui help. Topic is solved
Hi, I need some help redraw a listview which is in the main Gui, I have this code but it doesn't work, If someone could help me what I am doing wrong or if there is something I missing. Done2: { Gui, 2:submit,nohide ; ListVars msgbox your values Cod:%thisCodVar% `nDescrp: %NameVar% `nthisVar :%thisE...
- 28 Mar 2020, 19:39
- Forum: Gaming
- Topic: [Doubt] Things to make script undetectable
- Replies: 3
- Views: 2249
Re: [Doubt] Things to make script undetectable
@fabricio234
Could you tell me How to change the ahk class plz?
Could you tell me How to change the ahk class plz?
- 08 Mar 2020, 19:57
- Forum: Ask For Help
- Topic: Can autohotkey take precedence over mapped key in other sofware such as word?
- Replies: 3
- Views: 392
- 10 Feb 2020, 09:55
- Forum: Ask For Help
- Topic: search text with accents
- Replies: 0
- Views: 259
search text with accents
Hello, Is there a way to search Spanish accents or characters like ñ? I have this code that works fine with no accents text. But when i Put words with accents does not work. F3:: XL:=XL_Handle(1) lr:=XL_Used_Rows(XL) ; MsgBox,% lr "`n" row=8 While, (row<=lr) { rg := "A" . row duh := Trim(XL.Range(rg...
- 04 Feb 2020, 12:57
- Forum: Pedir Ayuda
- Topic: Remplazar ctrl derecho por f10 y alt derecho+q con ctrl iz+q Topic is solved
- Replies: 9
- Views: 2157
Re: Remplazar ctrl derecho por f10 y alt derecho+q con ctrl iz+q Topic is solved
Si quieres el @ no seria mas facil que lo envies de frente.
o
Code: Select all
Alt & q::Send , @
Code: Select all
!q::Send , @
- 05 Mar 2019, 08:27
- Forum: Ask For Help
- Topic: two listview, left click problem getting data from first listview Topic is solved
- Replies: 2
- Views: 536
Re: two listview, left click problem getting data from first listview Topic is solved
Thank you! , Learning from my mistake reading help file, next time I will read more careful the docs. I really appreciate your help, I have been learning some tutos and webinars from Joe Glines, also I am using your sqlite class for this example, thanks for the class too.



- 05 Mar 2019, 07:34
- Forum: Ask For Help
- Topic: two listview, left click problem getting data from first listview Topic is solved
- Replies: 2
- Views: 536
two listview, left click problem getting data from first listview Topic is solved
two listview, left click problem getting data from first listview Hi, someone help me plz, I was trying to solve the problem on my own but with no results. I have no idea what is wrong. It works with one listview but when add a second one the select click only get from listview two. :wtf: . I was ge...