Search found 29 matches

by vahju
01 Aug 2021, 13:51
Forum: Ask for Help (v1)
Topic: Not able to identify extra mouse button on Swiftpoint ProPoint mouse Topic is solved
Replies: 2
Views: 235

Not able to identify extra mouse button on Swiftpoint ProPoint mouse Topic is solved

I got this mouse as a gift a while ago and it works great. https://www.swiftpoint.com/products/ergonomic-mice-propoint I want to try to remap the third button on the mouse (at the very) top so I can use it with a script I plan on writing to help me with a data entry process at work. Currently, when ...
by vahju
15 Mar 2018, 21:03
Forum: Ask for Help (v1)
Topic: Problems with nslookup writing to file Topic is solved
Replies: 3
Views: 1320

Re: Problems with nslookup writing to file Topic is solved

Thanks for the quick reply BoBo. I still had some problems with your code but I combined yours with what I found in the help file and that seemed to work. It is fast but the command window is not fully hidden. Hope this helps others. Loop, Read, C:\temp\IPList.txt { FileName := "C:\temp\" . A_LoopRe...
by vahju
15 Mar 2018, 15:36
Forum: Ask for Help (v1)
Topic: Problems with nslookup writing to file Topic is solved
Replies: 3
Views: 1320

Problems with nslookup writing to file Topic is solved

I am trying to loop through a list of IP addresses and get the output of nslookup results into a text for each IP. Once I have all the files I can do some Excel/Power Query foo to get the results. The problem I am running into is the output only provides last two lines of the first IP address in the...
by vahju
06 Nov 2017, 22:17
Forum: Scripts and Functions (v1)
Topic: favorite tricks / scripts ...
Replies: 9
Views: 3989

Re: favorite tricks / scripts ...

I use some text replacement clips to help me out with some excel formulas. I do a ton of lookups with vlookup/match being my main go to lookup formula. ;vlookup/Match formula - double click parts to update :*:fnvm:: SendRaw,=Trim(VLOOKUP(DblClk_to_Select_Cell_to_lookup,DblClk_to_Select_Range_to_Sear...
by vahju
23 Sep 2017, 09:57
Forum: Ask for Help (v1)
Topic: Is there a script to auto press a key top prevent backlight timeout?
Replies: 12
Views: 4422

Re: Is there a script to auto press a key top prevent backlight timeout?

You may want to check out the keyboard manufacturer's website. It is possible that your keyboard has a built in setting that allows you to change the back light settings.

On my Aukey keyboard I can press FN+INS keys to through the various back light modes.

Hope that helps.
by vahju
01 Dec 2016, 14:04
Forum: Ask for Help (v1)
Topic: Printscreening with AHK - Freeze the screen!
Replies: 5
Views: 2208

Re: Printscreening with AHK - Freeze the screen!

I don't know DLL's but its possible that a Windows Theme is causing your issue. Any chance you can set the Windows Theme to Classic or to something the other people are using. Also its possible that DLL is specific to 32 bit Windows. One of the AHK Gurus will need to reply but its possible you may n...
by vahju
21 Nov 2016, 20:42
Forum: Ask for Help (v1)
Topic: Need help breaking up words in clipboard with Regex Topic is solved
Replies: 5
Views: 1723

Re: Need help breaking up words in clipboard with Regex Topic is solved

It works.
Must have save the changes without reloading the script.
Thanks again.
by vahju
19 Nov 2016, 22:11
Forum: Ask for Help (v1)
Topic: Need help breaking up words in clipboard with Regex Topic is solved
Replies: 5
Views: 1723

Re: Need help breaking up words in clipboard with Regex Topic is solved

I tried both and nothing gets replaced. ErrorLevel shows 0 replaced. Below is my script just to make sure nothing else is causing the issue. var := clipboard ; ===== Set file name FoundPos1 := RegExMatch(var, "Action Item \d+", vFileName) FoundPos2 := RegExMatch(var, "djtpAcceptance") If (FoundPos2 ...
by vahju
19 Nov 2016, 21:31
Forum: Ask for Help (v1)
Topic: Need help breaking up words in clipboard with Regex Topic is solved
Replies: 5
Views: 1723

Need help breaking up words in clipboard with Regex Topic is solved

First off my Regex skills are lacking (like non-existent). For work I have to copy some text from a internal application to gather some data. I have worked out how to copy the entire text of a site to the clipboard as text. Problem is the data that is need was in a table and now the column name and ...
by vahju
01 Mar 2016, 14:58
Forum: Other Utilities & Resources
Topic: Any good AHK courses out there?
Replies: 6
Views: 5265

Re: Any good AHK courses out there?

Check youtube for autohotkey and ahk. Some of the advance ahk users created some really nice video tutorials that might help but as nnnik said read the docs, ask questions on the forum, and google search what you don't know.
by vahju
04 May 2015, 21:10
Forum: Off-topic Discussion
Topic: Excel Help
Replies: 6
Views: 4057

Re: Excel Help

Try mrexcel.com
by vahju
16 Apr 2015, 11:20
Forum: Off-topic Discussion
Topic: Looking for local AHK Programmers.
Replies: 38
Views: 15633

Re: Looking for local AHK Programmers.

How about using a service like Meet ups to setup a Autohotkey/programming get-togethers?

http://www.meetup.com/
by vahju
25 Dec 2014, 13:01
Forum: Off-topic Discussion
Topic: Need help confirming SCAM and advice on cleaning machine
Replies: 6
Views: 5724

Re: Need help confirming SCAM and advice on cleaning machine

I think reloading Win8 is going to be best choice but the problem is I don't think he has the system discs.
by vahju
24 Dec 2014, 19:13
Forum: Off-topic Discussion
Topic: Need help confirming SCAM and advice on cleaning machine
Replies: 6
Views: 5724

Need help confirming SCAM and advice on cleaning machine

I know there are a lot advanced computer users on this forum so hopefully you can give me some advice. Father-in-law told me today he took care of a nasty virus/hack that hit his machine that caused an alarm in my head because he is not very computer handy. He told me he got a pop up notification fr...
by vahju
30 Oct 2014, 21:49
Forum: Ask for Help (v1)
Topic: AHK suddenly stops working?
Replies: 1
Views: 1265

Re: AHK suddenly stops working?

Does ahk work for anything else on your system? Could be that ahk script got accidentally paused or closed. See if you can reload the script. Sometimes when games or apps get updated the ahkclass changes and that will affect scripts that use that parameter. I would suggest posting the your script an...
by vahju
15 Apr 2014, 20:39
Forum: Ask for Help (v1)
Topic: Need to replace every Nth occurrence in a list [SOLVED]
Replies: 9
Views: 5322

Re: Need to replace every Nth occurrence in a list

Smörgåsbord and guest thanks for the help/examples. I could not get the regex example code to work properly and it kept grouping items 1 less then the number I provided. So I took your examples and came up with something much longer but it works and I can understand it to fix it. That mod function h...
by vahju
13 Apr 2014, 08:19
Forum: Ask for Help (v1)
Topic: Need to replace every Nth occurrence in a list [SOLVED]
Replies: 9
Views: 5322

Re: Need to replace every Nth occurrence in a list

Seems I spoke too soon. This works great from the example and from copying email from a text file. But if I copy directly from excel (which will happen a majority of the time) a extra character gets added and throws off the grouping. Example of output with grouping of 5: test641@fakeemail.com, , tes...
by vahju
12 Apr 2014, 16:27
Forum: Ask for Help (v1)
Topic: Need to replace every Nth occurrence in a list [SOLVED]
Replies: 9
Views: 5322

Re: Need to replace every Nth occurrence in a list

smörgåsbord that worked great. I had to adjust the code to trim off the dangling comma and space. loop, parse, Clipboard, `r`n { list .= A_loopfield . ", " if ( mod(A_index, 5) == 0 ) { StringTrimRight, list, list, 2 list := list . "`n" } } StringTrimRight, list, list, 2 ;MsgBox % list Clipboard := ...
by vahju
12 Apr 2014, 06:48
Forum: Ask for Help (v1)
Topic: Need to replace every Nth occurrence in a list [SOLVED]
Replies: 9
Views: 5322

Need to replace every Nth occurrence in a list [SOLVED]

Solved see this post below. ============ So I have tried the code here but its not working. Haystack := clipboard Haystack := RegExReplaceInc(Haystack,"`r`n",",") :this works MsgBox % RegExReplaceInc(Haystack,",","`r`n`r`n`r`n",1,5) ;add 3 lines to break into groups - not working return I have a lis...

Go to advanced search