Search found 6467 matches

by BoBo
05 Jan 2021, 21:52
Forum: Ask for Help (v1)
Topic: Sending %A_tab% as a string. Topic is solved
Replies: 3
Views: 130

Re: Sending %A_tab% as a string. Topic is solved

Code: Select all

send % "%A_tab%"
Untested.
by BoBo
05 Jan 2021, 21:39
Forum: Ask for Help (v1)
Topic: Guitar Strings
Replies: 2
Views: 148

Re: Guitar Strings

@Epialis That’s the concept of 'guitar' apps on mobile devices - that IMHO is kinda beating a dead horse. ;)
by BoBo
05 Jan 2021, 19:57
Forum: Ask for Help (v1)
Topic: AHK code to retrieve list of app packages (W8.1 and W10) without using PowerShell
Replies: 7
Views: 630

Re: AHK code to retrieve list of app packages (W8.1 and W10) without using PowerShell

@Joe Winograd I don't understand why powershell'ing is a problem? It's the modern equivalent to cmd.exe's command set and fully embedded into Win8/10.
teadrinker's Dll-orgy handles all its stuff using plain AHK so the PS command bit is only a parameter within the function call. :shifty:
by BoBo
05 Jan 2021, 17:24
Forum: Ask for Help (v1)
Topic: AHK code to retrieve list of app packages (W8.1 and W10) without using PowerShell
Replies: 7
Views: 630

Re: AHK code to retrieve list of app packages (W8.1 and W10) without using PowerShell

The PowerShell stuff worked fine for me. So this is just for the records. And yes, the StrSplit() part [c|s]hould be RegExed instead. i:=0 , clipboard:="" Run % "powershell -Command Get-AppxPackage | where-object {$_.IsFramework -eq $false -And $_.SignatureKind -eq \""Store\""} ; extract line where ...
by BoBo
05 Jan 2021, 05:21
Forum: Skripte und Funktionen
Topic: DriveGetObj()
Replies: 2
Views: 2587

Re: DriveGetObj()

:arrow: Hier hat just me die Abfrage verfügbarer Laufwerksbuchstaben ermöglicht. Ich habe diese Option in den Code übernommen. JFYI, wird als RegExReplace-Parameter '-24' gesetzt, werden alle verfügbaren Laufwerksbuchstaben retourniert, '0' liefert dagegen den jeweils letzten. Ausgabe ... DGO := Dri...
by BoBo
05 Jan 2021, 00:42
Forum: Ask for Help (v1)
Topic: Anyone use the OnWin.ahk?
Replies: 1
Views: 182

Re: Anyone use the OnWin.ahk?

Any chance that you provide a link to 'OnWin.ahk' so your fellow supporters won't waste time doing research? :think:
by BoBo
04 Jan 2021, 16:31
Forum: Ask for Help (v1)
Topic: Accessing and getting values in a 2-dimensional array
Replies: 9
Views: 344

Re: Accessing and getting values in a 2-dimensional array

window := [] window[1, 1] := "X" index := 1 MsgBox, % "Method #1: " window[1].1 . "`nMethod #2: " window[1,1] . "`nMethod #3: " window.1.1 . "`nMethod #4: " window[index].1 . "`nMethod #5: " window[index,1] . "`nMethod #6: " window[index,index] mikeyww I'd guess the square-bracket option is mainly ...
by BoBo
04 Jan 2021, 07:53
Forum: Ask for Help (v1)
Topic: The use of RegExReplace - to split a line
Replies: 22
Views: 748

Re: The use of RegExReplace - to split a line

Albireo: "Sending "original lines" is not a good basis. The challenges do not arise so often." I'd guess it's not about the content it's about the raw 'default' format your pdf converter delivers, and to identify some sort of specifics/patterns. If StrLength() is behaving strangely the issue is mai...
by BoBo
04 Jan 2021, 07:30
Forum: Ich brauche Hilfe
Topic: Problem mit SoundPlay Topic is solved
Replies: 9
Views: 444

Re: Problem mit SoundPlay Topic is solved

Der Alarm soll darauf hinweisen, daß die Gefahr besteht, daß das Aufnahme-Laufwerk für den DVBViewer (Software zum Aufnehmen von digitalem TV (Sat- oder DVB-T2 HD) vollläuft und Aufnahmen deshalb misslingen. Wäre da nicht die (berühmt berüchtigte Deutsche) Vorsorge vorteilhafter? Über die Länge/Dau...
by BoBo
04 Jan 2021, 07:17
Forum: Ask for Help (v1)
Topic: The use of RegExReplace - to split a line
Replies: 22
Views: 748

Re: The use of RegExReplace - to split a line

[opinion] just-me: "You should know all challenges you want to solve." Best case. Confirmed. But that might become challenging. I'd assume that it make sense to be able to handle the majority of invoices just fine and skip/reject the minority for further/manual handling. Point of interest (at least ...
by BoBo
04 Jan 2021, 06:57
Forum: Ich brauche Hilfe
Topic: Freies Laufwerk ermitteln Topic is solved
Replies: 10
Views: 714

Re: Freies Laufwerk ermitteln Topic is solved

@just me :thumbup:
Ich hatte zwztl an einen ASCII-Wertabgleich gedacht.
Ähm, was genau macht die RegExLogik (semantisch)?
by BoBo
04 Jan 2021, 06:51
Forum: Ich brauche Hilfe
Topic: Problem mit SoundPlay Topic is solved
Replies: 9
Views: 444

Re: Problem mit SoundPlay Topic is solved

Mal rein konzeptionell, ein AlarmSound schreit nach anschließend manuellen Eingreifen, und kann bei Abwesenheit/Umgebungsgeräuschpegel auch leicht überhört werden.
Was soll denn die Konsequenz aus dem Speicherplatzmangelerfassungsevent sein?? :think:
by BoBo
31 Dec 2020, 15:33
Forum: Ich brauche Hilfe
Topic: UDP nach update auf 1.1.33.02 funktionier nicht mehr
Replies: 7
Views: 827

Re: UDP nach update auf 1.1.33.02 funktionier nicht mehr

Schon mal auf Discord angefragt? @GeekDude hat AFAIK Socket.ahk gebaut. Evtl. kann er ad-hoc etwas dazu sagen?
by BoBo
31 Dec 2020, 07:58
Forum: Ask for Help (v1)
Topic: File (created today) count in multiple directories Topic is solved
Replies: 11
Views: 617

Re: File (created today) count in multiple directories Topic is solved

Code: Select all

FormatTime, date,, dd.MM.yyyy
path:= "\\DEFRA3STDB121\Exports\*.*"
i	:= 0

Loop, Files,% path
	{	fso := ComObjCreate("Scripting.FileSystemObject").GetFile(A_LoopFilePath)
		cnt := (StrSplit(fso.DateCreated,A_Space).1 = date) ? ++i : i
	}
fso := ""	
MsgBox % cnt

F12::ExitApp
Tested.
by BoBo
31 Dec 2020, 06:33
Forum: Ask for Help (v1)
Topic: Loading file with incremental value Topic is solved
Replies: 7
Views: 335

Re: Loading file with incremental value Topic is solved

@just me :thumbup: That code section has been adopted from the OP's initial code and went unnoticed bc it hasn't thrown an error.
Nevertheless, thx for clarifying this! :)

Go to advanced search