Search found 89 matches

by jwinfl
25 Mar 2024, 06:38
Forum: Ask for Help (v1)
Topic: FileGetTime Results 1 Hour Off except during Daylight Savings Time
Replies: 7
Views: 110

Re: FileGetTime Results 1 Hour Off except during Daylight Savings Time

Thank you for your answers and comments. Unfortunately they all basically end up at the same place... Anyone using AHK's FileGetTime reasonably assumes that it retrives the correct hour, where daylight savings time is used it does NOT always give the correct hour, it requires additional coding for t...
by jwinfl
21 Mar 2024, 07:39
Forum: Ask for Help (v1)
Topic: FileGetTime Results 1 Hour Off except during Daylight Savings Time
Replies: 7
Views: 110

Re: FileGetTime Results 1 Hour Off except during Daylight Savings Time

Hello, The easiest way might be to set your server to adjust its clock for Daylight Saving Time (DST). An alternative is using the script to adjust a time that you want to use within the script. You might then want to determine whether your own location is currently using DST. The use of DST depend...
by jwinfl
21 Mar 2024, 06:54
Forum: Ask for Help (v1)
Topic: FileGetTime Results 1 Hour Off except during Daylight Savings Time
Replies: 7
Views: 110

FileGetTime Results 1 Hour Off except during Daylight Savings Time

FileGetTime Results 1 Hour Off except during Daylight Savings Time #NoEnv ; best ahk compatibility SendMode Input ; sendinput #SingleInstance force ; only 1 instance of script running SetTitleMatchMode, 3 ; 1=starts with, 2=anywhere, 3=exact match filespath1 := "D:\_ JLW\Phones\. Virtual PBX\RECORDI...
by jwinfl
19 Jan 2024, 10:06
Forum: Ask for Help (v1)
Topic: Copy entire Drive with only specified file extensions
Replies: 1
Views: 84

Copy entire Drive with only specified file extensions

Copy entire Drive with only specified file extensions.
I would like to copy my entire drive D: to Z:\00 but with only specified file extensions being copied.
Any help would be appreciated.
by jwinfl
23 Oct 2023, 10:34
Forum: Ask for Help (v2)
Topic: file copy with original timestamps
Replies: 5
Views: 460

Re: file copy with original timestamps

Thank you for your comments.
What I do now is zip the files then unzip them where I want them, zipping them preserves all the original time stamps.
I was looking for a script that accomplishes the same thing in one step, if available.
Jack
by jwinfl
23 Oct 2023, 08:35
Forum: Ask for Help (v2)
Topic: file copy with original timestamps
Replies: 5
Views: 460

file copy with original timestamps

I would like to copy files using ahk and retain all the original timestamps one or more are changed by w10 to the current time. I prefer to not use another program unless it does this without having to use dos, eg, the command prompt, etc. I can accomplish this now by zipping the files then unzippin...
by jwinfl
18 Feb 2023, 17:37
Forum: Ask for Help (v1)
Topic: Can't send grave accent key " ` " Topic is solved
Replies: 2
Views: 604

Re: Can't send grave accent key " ` " Topic is solved

@gregster
Thank you that works.
by jwinfl
18 Feb 2023, 16:48
Forum: Ask for Help (v1)
Topic: Can't send grave accent key " ` " Topic is solved
Replies: 2
Views: 604

Can't send grave accent key " ` " Topic is solved

Sendinput `` does not work.... `:: if winactive("ahk_exe Dcad20.EXE") sendinput `` else run C:\windows\explorer.EXE ms-screenclip: ; SCREEN CAPTURE > RUN I have tried `, {`}, {``}, scan code, ascii, chr, etc. none send the ` key to my cad program, every other key I have tried gets sent, eg, sendinpu...
by jwinfl
25 Nov 2022, 06:34
Forum: Ask for Help (v1)
Topic: Is there anyway AHK can transfer files from my Windows 10 desktop to my Android 12 phone?
Replies: 1
Views: 225

Is there anyway AHK can transfer files from my Windows 10 desktop to my Android 12 phone?

Thank you for taking the time to read my post. Is there anyway AHK can transfer files from my Windows 10 desktop to my Android 12 phone? If so, how? I can manually transfer files and folders using file explorer, but even the simplest ahk code doesn't appear to work, for example... msgbox % fileexist...
by jwinfl
26 Oct 2022, 05:48
Forum: Ask for Help (v1)
Topic: Sending Hotkey containing Function keys stopped working correctly.
Replies: 4
Views: 463

Re: Sending Hotkey containing Function keys stopped working correctly.

mikeyww Thank you for your reply. I am Not trying to call a subroutine? I am trying to find out why the 3 line sendlevel script to activate any hotkey no longer works when trying to activate ANY hotkey containing "#F", for example; #F12 or !^+#F12 no longer work unless you put the hotkey text after...
by jwinfl
25 Oct 2022, 16:52
Forum: Ask for Help (v1)
Topic: Sending Hotkey containing Function keys stopped working correctly.
Replies: 4
Views: 463

Sending Hotkey containing Function keys stopped working correctly.

Today using windows 10, sending ahk hotkeys with function keys stopped working, not sure if I did something or the recent windows update did. My guess is Microsoft has hijacked #F for its Feedback Hub. Note, sending #F12 or any other function key combonation from the keyboard still works correctly, ...
by jwinfl
05 Oct 2022, 07:35
Forum: Ask for Help (v1)
Topic: GUI add Text, Bold & Normal on Same Line also end location of last text.
Replies: 10
Views: 1551

Re: GUI add Text, Bold & Normal on Same Line also end location of last text.

mikeyww , On my computer the gui moves the same as it did before. You have to select an area where there are no boxes with text. There are 3 areas where the mouse will move the gui... 1) anywhere along the bottom of the gui below the bottom text boxes down to the gui's bottom border (area is 5 pixe...
by jwinfl
05 Oct 2022, 04:32
Forum: Ask for Help (v1)
Topic: GUI add Text, Bold & Normal on Same Line also end location of last text.
Replies: 10
Views: 1551

Re: GUI add Text, Bold & Normal on Same Line also end location of last text.

mikeyww Thank you for your reply. I think I figured out how to have your code go to Start: and show a msgbox instead of momentarily showing a gui with the index. That way I can do further processing after Start: which makes the script easier for me to understand. I would appreciate it if you could ...
by jwinfl
04 Oct 2022, 10:58
Forum: Ask for Help (v1)
Topic: GUI add Text, Bold & Normal on Same Line also end location of last text.
Replies: 10
Views: 1551

Re: GUI add Text, Bold & Normal on Same Line also end location of last text.

mikeyww I tried the code, thank you. It gets the selection number and displays normal and bold text using the wm_lbuttondown which was being used to move the gui. Anyway to make the gui movable too, note, the only place for the left button to move the gui is the 5 pixels along the bottom since the ...
by jwinfl
04 Oct 2022, 08:03
Forum: Ask for Help (v1)
Topic: GUI add Text, Bold & Normal on Same Line also end location of last text.
Replies: 10
Views: 1551

Re: GUI add Text, Bold & Normal on Same Line also end location of last text.

mikeyww LETS START OVER... In the code below... Clicking any item, anywhere inside it's box results in the selection's number (a_index) in a_guicontrol , which is exactly what I want it to do. ;; "D:\BACKUP\AUTO HOT KEYS\My Scripts\- code sent to forum bold text loc and click being a_index - Modifi...
by jwinfl
03 Oct 2022, 07:13
Forum: Ask for Help (v1)
Topic: GUI add Text, Bold & Normal on Same Line also end location of last text.
Replies: 10
Views: 1551

Re: GUI add Text, Bold & Normal on Same Line also end location of last text.

mikeyww , Thank you. I modified the code as you suggested, see lines 99, 104, 123-126 in the code below. The bold text goes where I wanted it to. Thanks again. Note, in the code below I added two spaces between the normal and bold text. The selection process unfortunately does NOT work as I had hop...
by jwinfl
02 Oct 2022, 11:25
Forum: Ask for Help (v1)
Topic: GUI add Text, Bold & Normal on Same Line also end location of last text.
Replies: 10
Views: 1551

GUI add Text, Bold & Normal on Same Line also end location of last text.

Thank you for viewing my post. I have two problems I need help with... Problem 1 Line 103 in the following code, I would like the bold text (txt2) to be added immediately after the normal text (txt1) from Line 99. I would prefer to NOT use... xp+%txt1len% ... to locate the x position of the bold tex...
by jwinfl
29 Sep 2022, 16:16
Forum: Ask for Help (v1)
Topic: Switch works but then the script exits and does NOT continue further.
Replies: 3
Views: 335

Re: Switch works but then the script exits and does NOT continue further.

Thank you, I removed the returns and it works fine.
Prior to my original posting, I looked at https://www.autohotkey.com/docs/commands/Switch.htm several times and every example had a return and no where did it say it wasn't necessary.
by jwinfl
29 Sep 2022, 12:53
Forum: Ask for Help (v1)
Topic: Switch works but then the script exits and does NOT continue further.
Replies: 3
Views: 335

Switch works but then the script exits and does NOT continue further.

Thank you for looking at my post. I have no idea what is wrong. Switch horz in the code below finds guiX and shows it in the first msgbox. As soon as I press ok the script closes and never executes line 26, the second msgbox, or anything else I put after the switch. horz := "R", W := 300, H := 300 s...
by jwinfl
29 Sep 2022, 07:58
Forum: Ask for Help (v1)
Topic: GUI that shows multiple columns of multiple clickable items Topic is solved
Replies: 14
Views: 1823

SOLVED...GUI that shows multiple columns of multiple clickable items Topic is solved

SOLVED... Thanks to everyone, unfortunately all of the proposals had limitations, eg., minimum label and or text heights, etc. I found garry's 2013 post... https://www.autohotkey.com/board/topic/89000-color-the-text-of-a-gui-button-color-the-button/ at the bottom. His post put me on the right track....

Go to advanced search