Hi,
1. Clear the clipboard before you try to copy. Otherwise ClipWait won't wait if the clipboard contains text.
2. Check ErrorLevel after ClipWait to ensure that something has been copied.
BTW: � is the UTF-8 B(yte)O(rder)M(ark). It isn't a German ü nor any other character.
Search found 7676 matches
- 6 minutes ago
- Forum: Ask For Help
- Topic: How to make copy/paste script more reliable?
- Replies: 1
- Views: 12
- Yesterday, 06:07
- Forum: Ich brauche Hilfe
- Topic: Statusleistentext auslesen
- Replies: 4
- Views: 107
Re: Statusleistentext auslesen
Moin, zunächst würde ich versuchen, die Textlänge per SB_GETTEXTLENGTH abzufragen. Wenn das ein plausibles Ergebnis liefert, hast Du eine Chance. Den Speicherbereich für die Rückgabe des Textes musst Du allerdings (siehe BoBo's erster Link) im Adressraum des externen Programms reservieren und die Ad...
- Yesterday, 05:59
- Forum: Ich brauche Hilfe
- Topic: Ich brauche Testhilfe
- Replies: 8
- Views: 186
Re: Ich brauche Testhilfe
Dank auch Dir, Lucky!
- 27 Feb 2021, 06:58
- Forum: Ask For Help
- Topic: read file in binary mode
- Replies: 11
- Views: 189
Re: read file in binary mode
You cannot display binary data with a MsgBox or other AHK commands/functions expecting a string.
- 27 Feb 2021, 06:52
- Forum: Ask For Help
- Topic: read file in binary mode
- Replies: 11
- Views: 189
Re: read file in binary mode
When do you get 'strange signs'?
- 27 Feb 2021, 06:43
- Forum: Ask For Help
- Topic: read file in binary mode
- Replies: 11
- Views: 189
Re: read file in binary mode
I don't know Python, but I assume we don't need the output of print(file). What a you trying to do with the read sata?
- 27 Feb 2021, 05:53
- Forum: Ask For Help
- Topic: read file in binary mode
- Replies: 11
- Views: 189
- 27 Feb 2021, 05:09
- Forum: Ich brauche Hilfe
- Topic: LVA_SetCell Frage Topic is solved
- Replies: 6
- Views: 208
Re: LVA_SetCell Frage Topic is solved
Moin, Zeilen-Optionen Focus : Setzt den Tastaturfokus auf die Zeile (wird oft in Verbindung mit Select verwendet). Mit LV_Modify(ZeileNummer, "-Focus") kann der Fokus später entfernt werden. Select : Wählt die Zeile aus. Mit LV_Modify(ZeileNummer, "-Select") kann die Zeile später abgewählt werden. A...
- 27 Feb 2021, 04:55
- Forum: Ich brauche Hilfe
- Topic: Ich brauche Testhilfe
- Replies: 8
- Views: 186
Re: Ich brauche Testhilfe
Ich danke allen Testern. Das Ergebis ist leider nicht das von mir erhoffte, aber warum soll es auch einfach gehen ...?
- 27 Feb 2021, 04:54
- Forum: Ich brauche Hilfe
- Topic: Einträge aus SQLite Datenbank bei der Eingabe anzeigen Topic is solved
- Replies: 22
- Views: 372
- 26 Feb 2021, 11:57
- Forum: Ich brauche Hilfe
- Topic: Ich brauche Testhilfe
- Replies: 8
- Views: 186
Ich brauche Testhilfe
Moin, könnt Ihr mal probieren, ob der Wert des Textfeldes auch bei Windows-Versionen < 10 'durchscrollt', wenn man über dem Feld das Mausrad dreht (und das auch bei nicht aktivem Fenster)? #NoEnv SetBatchLines, -1 Values := [0, 1, 2, 3, 4, 5] Count := 6 Current := 1 Gui, Font, s36 Gui, Add, Text, w2...
- 26 Feb 2021, 11:28
- Forum: Ich brauche Hilfe
- Topic: Einträge aus SQLite Datenbank bei der Eingabe anzeigen Topic is solved
- Replies: 22
- Views: 372
Re: Einträge aus SQLite Datenbank bei der Eingabe anzeigen Topic is solved
Moin,
Du musst sicherstellen, dass eine DB-Datei mit leeren Benutzertabellen tatsächlich an den korrekten Platz kopiert wird. Ansonsten legt SQLite beim Öffnen einer nicht vorhandenen Datenbankdatei eine Datei ohne Benutzertabellen an.
Du musst sicherstellen, dass eine DB-Datei mit leeren Benutzertabellen tatsächlich an den korrekten Platz kopiert wird. Ansonsten legt SQLite beim Öffnen einer nicht vorhandenen Datenbankdatei eine Datei ohne Benutzertabellen an.
- 26 Feb 2021, 06:52
- Forum: Ask For Help
- Topic: colored listview headers
- Replies: 1
- Views: 85
Re: colored listview headers
Hi, after some testing it seems that CDDS_ITEMPREPAINT notifications are not received by the monitor function. I don't know why, maybe because the header control is'nt an AHK GUI control?
- 26 Feb 2021, 06:22
- Forum: Ich brauche Hilfe
- Topic: LVA_SetCell Frage Topic is solved
- Replies: 6
- Views: 208
Re: LVA_SetCell Frage Topic is solved
Moin, LVA ist ja nicht mein Code sondern nur eine Überarbeitung von dadepps Skript. Wie es ist, bleibt wohl nichts Anderes als 'rumzuloopen' und für alle Zellen LVA_Info() aufzurufen. dadepp 'versteckt' ja die Werte in statischen Variablen innerhalb der Funktion. Du könntest Dir beim Ändern der Farb...
- 26 Feb 2021, 05:40
- Forum: Ask For Help
- Topic: GDI+ DPI Issue
- Replies: 14
- Views: 359
Re: GDI+ DPI Issue
Y SF Distance Distance Rounded 128 * 1.25 = 160 130 * 1.25 = 162.5 2.5 3 132 * 1.25 = 165 2.5 2 You must not round the results to give GDI+ a chance to draw with consistent distances. Use the Float version of the function and try to change what teadrinker proposed.
- 25 Feb 2021, 07:59
- Forum: Ask For Help
- Topic: LV_GetCount() mysteriously zero Topic is solved
- Replies: 3
- Views: 92
Re: LV_GetCount() mysteriously zero Topic is solved
Absolutely right!ahketype wrote:I guess clicking the button activates the routine from the GUI itself, where the SetTimer routine isn't attached to a GUI?
- 25 Feb 2021, 07:55
- Forum: Ich brauche Hilfe
- Topic: LVA_SetCell Frage Topic is solved
- Replies: 6
- Views: 208
Re: LVA_SetCell Frage Topic is solved
Moin,
LVA_Info("GetCellType", ...) liefert 1, wenn die Zelle gefärbt wurde.
LVA_Info("GetCellType", ...) liefert 1, wenn die Zelle gefärbt wurde.
- 25 Feb 2021, 05:25
- Forum: Ask For Help
- Topic: GUI Listbox help
- Replies: 62
- Views: 986
Re: GUI Listbox help
Of course!iilabs wrote:Should be Cnt: 6 instead of Max:6 ?
- 24 Feb 2021, 11:57
- Forum: Ask For Help
- Topic: GUI Listbox help
- Replies: 62
- Views: 986
Re: GUI Listbox help
Just out of curiosity, does this work on Win 8? #NoEnv #SingleInstance, Force SetBatchLines, -1 GuiColor := 0x000111 Trans := 144 Boxes := [{Opts: "x150 y110 w20 h20", Values: ["T1", "12", "23", "34", "45", "5S"], Cnt: 6, Current: 1} , {Opts: "x130 y40 w20 h20", Values: ["0", "1", "2", "3", "4", "5"...
- 24 Feb 2021, 11:54
- Forum: Ask For Help
- Topic: LV_GetCount() mysteriously zero Topic is solved
- Replies: 3
- Views: 92