Search found 198 matches

by inseption86
19 Mar 2024, 01:53
Forum: Ask for Help (v1)
Topic: AHK_ImageListID Topic is solved
Replies: 1
Views: 46

AHK_ImageListID Topic is solved

Good afternoon How to set icons according to conditions, in the current code they are set to all lines Gui,Screen_form: Color, black Gui,Screen_form: Add, ListView, vLV gLv , One|Two|Three Gui,Screen_form: Show,, visitor ImageListID := IL_Create(1) IL_Add(ImageListID, "shell32.dll", 147) LV_SetImage...
by inseption86
05 Mar 2024, 10:13
Forum: Ask for Help (v1)
Topic: disable the context menu in Editbox Topic is solved
Replies: 1
Views: 67

disable the context menu in Editbox Topic is solved

Good afternoon How to disable the context menu in Editbox? Disabling the right button is excluded since it is used to call up the menu

Video_2024-03-05_180942.gif
Video_2024-03-05_180942.gif (479.79 KiB) Viewed 67 times
by inseption86
28 Feb 2024, 06:16
Forum: Ask for Help (v1)
Topic: Sort Array Topic is solved
Replies: 2
Views: 128

Sort Array Topic is solved

Good afternoon Tell me how to sort array2 according to array1? #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. #SingleInstance force ; игнор уже запущенного скрипта, переоткрытие Setbatchlines -1 list = ( 21864483 21864495 21962071 21974825 22049592 22041919 2...
by inseption86
24 Feb 2024, 10:47
Forum: Scripts and Functions (v1)
Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No IE!
Replies: 668
Views: 453822

Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No IE!

Good afternoon I have several active windows users who have chrome running in developer mode. But I receive a link not from my active chrome, but from another user's active chrome. Is it possible to fix this somehow? if (Chromes := Chrome.FindInstances()) { ChromeInst := {"base": Chrome, "DebugPort"...
by inseption86
23 Jul 2023, 05:19
Forum: Scripts and Functions (v1)
Topic: [Class] SQLiteDB - Update on 2022-10-04
Replies: 303
Views: 205361

Re: [Class] SQLiteDB - Update on 2022-10-04

Good afternoon Is it possible to get information on each request? DB := new SQLiteDB If !DB.OpenDB(DBFileName, "R", 0) { MsgBox, 16, SQLite Error, % "Msg:`t" . DB.ErrorMsg . "`nCode:`t" . DB.ErrorCode ExitApp } SQL := "Select ProfileID from clients WHERE TestingData= '" TimeString_day_sql "';" SQL ....
by inseption86
03 Jul 2023, 03:43
Forum: Ask for Help (v1)
Topic: AHK_timer
Replies: 1
Views: 172

AHK_timer

Good afternoon How to ignore the time if the timer was disabled? For t12 to pause at the moment f5 was pressed, and then continue from that moment duration := "2400" t10 += % duration/60, minutes SetTimer, Progress, 500 return Progress: t11 := t10 t11 -= A_Now, seconds t12 := 20100101000000 t12 += t...
by inseption86
29 Jun 2023, 09:10
Forum: Ask for Help (v1)
Topic: AHK_menu
Replies: 1
Views: 168

AHK_menu

Good afternoon How to pass menu condition? Menu, Submenu1, Add, Item1, MenuHandler Menu, Submenu1, Add, Item2, MenuHandler Menu, MyMenu, Add, % (qq = "1" ? "My Submenu1" : "My Submenu") , :Submenu1 return MenuHandler: MsgBox You selected %A_ThisMenuItem% from the menu %A_ThisMenu%. return qq := "1" ...
by inseption86
05 Jun 2023, 03:35
Forum: Scripts and Functions (v1)
Topic: [Class] SQLiteDB - Update on 2022-10-04
Replies: 303
Views: 205361

Re: [Class] SQLiteDB - Update on 2022-10-04

While !DB.Exec(Arg) { If Instr(DB.ErrorMsg, "database is locked") { ToolTip, % DB.ErrorMsg ".....One moment!!" Sleep 1000 Continue } MsgBox, 16, SQLite Error, % "Msg:`t" . DB.ErrorMsg . "`nCode:`t" . DB.ErrorCode Break } ? thanks
by inseption86
05 Jun 2023, 02:42
Forum: Scripts and Functions (v1)
Topic: [Class] SQLiteDB - Update on 2022-10-04
Replies: 303
Views: 205361

Re: [Class] SQLiteDB - Update on 2022-10-04

Hi, AHK v1 and also v2 are single-threaded. this code - normal variant? check_mydata: If !DB.Exec(Arg) { if Instr(DB.ErrorMsg, "database is locked") { ToolTip, % DB.ErrorMsg ".....One moment!!" sleep 1000 goto check_mydata } else MsgBox, 16, SQLite Error, % "Msg:`t" . DB.ErrorMsg . "`nCode:`t" . DB...
by inseption86
04 Jun 2023, 16:51
Forum: Scripts and Functions (v1)
Topic: [Class] SQLiteDB - Update on 2022-10-04
Replies: 303
Views: 205361

Re: [Class] SQLiteDB - Update on 2022-10-04

Good afternoon I use this tool to read and write from different devices, how can I do multithreading? OpenDB(DBFileName_range, Access := "R" , "Select certif from range_certificate ORDER BY certif DESC LIMIT 1", get_rows) OpenDB(DBPath, Access, Arg, ByRef get_rows) { DB := new SQLiteDB DB.OpenDB(DBP...
by inseption86
01 Jun 2023, 02:48
Forum: Ask for Help (v1)
Topic: Excel_sort_color
Replies: 0
Views: 329

Excel_sort_color

hello, how is it possible to sort by cell color? book_otchet.workSheets(1).Range("A" id.row ":F" end).Sort(book_otchet.workSheets(1).Columns(component.column),2) - is work, by value book_otchet.workSheets(1).Range("A" id.row ":F" end).Sort(book_otchet.workSheets(1).Columns(numbs.column),2).SortOnVal...
by inseption86
30 May 2023, 09:12
Forum: Ask for Help (v1)
Topic: AHK_automatic transition_GUI Topic is solved
Replies: 1
Views: 217

AHK_automatic transition_GUI Topic is solved

is it possible to make automatic transition between date month and year in GUI?
by inseption86
29 May 2023, 06:05
Forum: Ask for Help (v1)
Topic: network folder
Replies: 5
Views: 335

Re: network folder

boiler wrote:
29 May 2023, 06:03
I don’t know the answer, but just wanted to clarify that and point out that if it’s possible, then the user of the script would have full access to the drive if they know a little AHK.
I think the user is unlikely to dig into the '.exe'
by inseption86
29 May 2023, 06:00
Forum: Ask for Help (v1)
Topic: network folder
Replies: 5
Views: 335

Re: network folder

boiler wrote:
29 May 2023, 05:53
Are you asking if it’s possible for the script to have permission that the user’s Windows account doesn’t have?
Yes
by inseption86
29 May 2023, 04:51
Forum: Ask for Help (v1)
Topic: network folder
Replies: 5
Views: 335

network folder

I have a network folder with permissions. The user account is limited, is it possible in the script that the user will run - to register credentials so that the script has access to the network folder?
by inseption86
18 May 2023, 09:16
Forum: Ask for Help (v1)
Topic: multiple objects_shell explorer
Replies: 1
Views: 327

multiple objects_shell explorer

Good afternoon How to upload multiple objects? #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. #SingleInstance force pic := "...\picture\loading.gif" Gui Registration: Add,...
by inseption86
18 May 2023, 07:06
Forum: Ask for Help (v1)
Topic: get days for a given period
Replies: 3
Views: 294

Re: get days for a given period

save: Gui Registration: Submit, NoHide qq := FirstDate_report FormatTime, qqq, % FirstDate_report , dd.MM.yyyy array_data := {} array_data.Push(qqq) EnvSub, SecondDate_report, FirstDate_report, days loop, % SecondDate_report { qq += +1, days FormatTime, qqq, % qq, dd.MM.yyyy array_data.Push(qqq) } ...
by inseption86
18 May 2023, 06:07
Forum: Ask for Help (v1)
Topic: get days for a given period
Replies: 3
Views: 294

Re: get days for a given period

Thanks!! I would like to know these dates
by inseption86
18 May 2023, 05:08
Forum: Ask for Help (v1)
Topic: get days for a given period
Replies: 3
Views: 294

get days for a given period

Good afternoon how to get days for a given period? #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWork...
by inseption86
18 May 2023, 03:26
Forum: Ask for Help (v1)
Topic: Webcam capture (fast)
Replies: 11
Views: 3743

Re: Webcam capture (fast)

how to do without the camera selection window, and immediately register its name in the gui?

Go to advanced search