Search found 9391 matches

by just me
Today, 02:15
Forum: Ask for Help (v2)
Topic: InStr(...) gives error?
Replies: 22
Views: 158

Re: InStr(...) gives error?

Your issue seems to be caused by the fact that SciTE expects UTF-8 but gets ANSI. Most single characters above 127 are invalid in UTF-8. Only some are permitted as leading characters of character sequences used to encode a single character. The è is 0xE9 / 235 and thus invalid UTF-8. SciTE seems to ...
by just me
Yesterday, 13:07
Forum: Ich brauche Hilfe
Topic: String nach WinHttpRequest-Abfrage konvertieren Topic is solved
Replies: 10
Views: 146

Re: String nach WinHttpRequest-Abfrage konvertieren Topic is solved

... so schön schlank - auch wenn ich durch die Funktion nicht durchblicke ... Wenn Du damit teadrinkers Funktion meinst, ich verstehe auch nicht wirklich, wie das funktioniert. Ich verstehe aber immerhin, dass die in dem erzeugten IE-Objekt eingebettete JavaScript-Engine irgendwie dafür genutzt wir...
by just me
Yesterday, 07:35
Forum: Ask for Help (v2)
Topic: Clipboard unvisible items
Replies: 6
Views: 102

Re: Clipboard unvisible items

mikeyww wrote:You have posted a v1 script in the v2 forum.
@mikeyww, sorry, I missed that.
by just me
Yesterday, 06:54
Forum: Ask for Help (v2)
Topic: Can the RichEdit be embedded in Gui Tab
Replies: 2
Views: 55

Re: Can the RichEdit be embedded in Gui Tab

IMO the control will not refuse.
by just me
Yesterday, 06:45
Forum: Ask for Help (v2)
Topic: Clipboard unvisible items
Replies: 6
Views: 102

Re: Clipboard unvisible items

Code: Select all

Clipboard := ""
doesn't clear A_Clipboard ;)
by just me
Yesterday, 04:22
Forum: Ich brauche Hilfe
Topic: String nach WinHttpRequest-Abfrage konvertieren Topic is solved
Replies: 10
Views: 146

Re: String nach WinHttpRequest-Abfrage konvertieren Topic is solved

Moin, es gibt hier ein Tool von teadrinker , das JSON-Strings in AHK-Objekte transformiert. Dabei werden die 'kodierten' Umlaute automatisch 'enkodiert' und wahrscheinlich auch etwaige weitere notwendige Usetzungen erledigt. Für Deine JSON-Antwort sollte es sich deshalb gut eignen. Auf die Daten im ...
by just me
Yesterday, 03:30
Forum: Ich brauche Hilfe
Topic: Menü Eintrag nachträglich verändern Topic is solved
Replies: 4
Views: 79

Re: Menü Eintrag nachträglich verändern Topic is solved

Nur der Vollständigkeit halber : Man kann einem bestehenden Menüeintrag mit der Anweisung Menu, MenüName, Rename, MenüpunktName, NeuerName einen neuen Namen zuweisen. Bei Menüs, deren Aufbau bzw. Reihenfolge konstant ist, kann man dafür auch die Position des Menüeintrag verwenden (siehe Der Menüpun...
by just me
Yesterday, 02:44
Forum: Scripts and Functions (v2)
Topic: Class_SQLiteDB v2.0.6 - 2023-11-28
Replies: 55
Views: 66063

Re: Class_SQLiteDB v2.0.6 - 2023-11-28

For select count (*), sum (je1), sum (xm), sum (ap) from test; GetTable() should return an object TB with one result row containing 4 columns. You should get the values using

Code: Select all

Count := TB.Rows[1][1]
SumJE1 := TB.Rows[1][2]
SumXM := TB.Rows[1][3]
SumAP := TB.Rows[1][4]
by just me
12 Apr 2024, 10:26
Forum: Ich brauche Hilfe
Topic: Aktualisierung der Klasse Class_ScrollGUI auf AuotHotkey Version 2
Replies: 5
Views: 107

Re: Aktualisierung der Klasse Class_ScrollGUI auf AuotHotkey Version 2

Ok, ich schaue mal, ob mir dazu etwas Kluges einfällt.
Ich melde mich wieder.
by just me
12 Apr 2024, 01:35
Forum: Ich brauche Hilfe
Topic: Aktualisierung der Klasse Class_ScrollGUI auf AuotHotkey Version 2
Replies: 5
Views: 107

Re: Aktualisierung der Klasse Class_ScrollGUI auf AuotHotkey Version 2

Moin,

ich kann Deine Probleme nicht nachvollziehen. Arbeitest Du mit einem Display mit einer Auflösung ungleich 96 DPI?
by just me
11 Apr 2024, 06:52
Forum: Ich brauche Hilfe
Topic: Aktualisierung der Klasse Class_ScrollGUI auf AuotHotkey Version 2
Replies: 5
Views: 107

Re: Aktualisierung der Klasse Class_ScrollGUI auf AuotHotkey Version 2

Moin Nussbeisser , ich habe noch eine weitgehend umgestellte Version gefunden (die Methode AdjustToChild() fehlt). Du kannst das ja mal ausprobieren: #Requires AutoHotkey v2.0 ; ====================================================================================================================== ; N...
by just me
09 Apr 2024, 15:36
Forum: Bug Reports
Topic: A_Screen{Width,Height,DPI} are wrong when changing the main monitor
Replies: 6
Views: 378

Re: A_Screen{Width,Height,DPI} are wrong when changing the main monitor

A_ScreenDPI
In a system with multiple display monitors, this value is the same for all monitors.
?
by just me
07 Apr 2024, 03:36
Forum: Bug Reports
Topic: SetTitleMatchMode Regex + i) option failing
Replies: 11
Views: 207

Re: SetTitleMatchMode Regex + i) option failing

All is working as documented.

Code: Select all

Msgbox WinExist("i)ahk_class AutoHotkey.*")
This would search for a window title containing "ahk_class AutoHotkey.*". The ahk_ criteria must not be included in regex needles.
by just me
07 Apr 2024, 03:01
Forum: Scripts and Functions (v2)
Topic: Class ToolTipOptions - 2024-03-27
Replies: 18
Views: 3288

Re: Class ToolTipOptions - 2024-03-27

Hi @kunkel321, it's BGR:

Code: Select all

      BGR(Color, Default := "") { ; converts colors to BGR
         ; HTML Colors (BGR) <<<<<
by just me
05 Apr 2024, 02:43
Forum: Ask for Help (v2)
Topic: How to write such OnEvent(Edit change) function
Replies: 5
Views: 148

Re: How to write such OnEvent(Edit change) function

Hi @songdg,

why don't you use a simple ListView to show the values? It would be one control with one event handler.
by just me
03 Apr 2024, 02:51
Forum: Ich brauche Hilfe
Topic: Fehler beim Versuch, den OneNote-Link zu öffnen Topic is solved
Replies: 4
Views: 59

Re: Fehler beim Versuch, den OneNote-Link zu öffnen Topic is solved

Moin, Du benutzt anscheinend AHK 1.1. Das 'Run' Kommando erwartet hier zunächst einmal 'einfachen' Text (ohne Anführungszeihen, die braucht es normalerweise nur, wenn ein Parameter Leerzeichen enthält). Deshalb werden % -Zeichen als Einleitung für Variablenreferenzen ( %MeineVariable% ) behandelt. M...
by just me
01 Apr 2024, 03:18
Forum: Ask for Help (v2)
Topic: How to get the structure data from the pointer returned Topic is solved
Replies: 4
Views: 128

Re: How to get the structure data from the pointer returned Topic is solved

The pointer might point to memory inside the curl dll. Try to load the dll beforehand:

Code: Select all

HCURL := DllCall("LoadLibrary", "Str", "libcurl-x64.dll", "UPtr")
by just me
01 Apr 2024, 03:08
Forum: Ich brauche Hilfe
Topic: Link mit verschiedenen Browsern öffnen Topic is solved
Replies: 41
Views: 777

Re: Link mit verschiedenen Browsern öffnen Topic is solved

Moin, es sieht so aus, dass Deine Firefoxe unterschiedliche Einstellungen haben sollen. Das heißt für mich, Du achtest selbst darauf, dass immer nur eine Instanz läuft, oder die Startparameter - wie z.b. -Profile - erzeugen automatisch verschiedene Instanzen. Dir bleibt deshalb - wie Du ja auch ursp...

Go to advanced search