Search found 94 matches

by Taurus
11 Jan 2023, 09:47
Forum: Ask for Help (v1)
Topic: Convert string to deflate compressed stream
Replies: 1
Views: 224

Convert string to deflate compressed stream

Hi, I try to convert a string to deflate, but the result is always empty. Any idea? Is it working for someone? To_deflate: str := "This is the string to be compressed." ; Create a new instance of the Deflate compression algorithm obj := ComObjCreate("ADODB.Stream") ; Set the type of the data in the ...
by Taurus
09 Aug 2021, 09:12
Forum: Scripts and Functions (v2)
Topic: WebView2 Control For Edge
Replies: 24
Views: 10525

Re: WebView2 Control For Edge

Ok, downloaded package + extracted runtimes\native\WebView2Loader.dll.

Now i get Error 203 - Missing Environment option. Any idea?
by Taurus
09 Aug 2021, 05:29
Forum: Scripts and Functions (v2)
Topic: WebView2 Control For Edge
Replies: 24
Views: 10525

Re: WebView2 Control For Edge

Thanks. Code now runs in beta, but i still have problems with the dll. I changed code to local dllPath := "EmbeddedBrowserWebView.dll" but i get the error 'Call to non existent function - CreateCoreWebView2Environment'. Am i using the wrong dll? :think: I downloaded https://developer.microsoft.com/e...
by Taurus
06 Aug 2021, 03:29
Forum: Scripts and Functions (v2)
Topic: WebView2 Control For Edge
Replies: 24
Views: 10525

Re: WebView2 Control For Edge

Would be very great. Thanks for your work! :)
by Taurus
05 Aug 2021, 08:22
Forum: Scripts and Functions (v2)
Topic: WebView2 Control For Edge
Replies: 24
Views: 10525

Re: WebView2 Control For Edge

Hi, Are you able to help me too? I use your last code + ahk v2-beta1 x86 (last from main ahk page) + EmbeddedBrowserWebView.dll x86 v92 2,78MB (last from MS cab > uncompressed + also changed the dllPath in WebView2.ahk ;) ) But i get some code errors: Var BufferAlloc, isfunc appears to never be assi...
by Taurus
23 Oct 2020, 05:39
Forum: AutoHotkey Development
Topic: change from v1 to v2 - is it possible to get a whole list of all errors?
Replies: 6
Views: 3138

change from v1 to v2 - is it possible to get a whole list of all errors?

Hi, I am starting to change my >10.000 lines scripts from v1 to v2. Is it possible to get a whole list of all errors? At the moment i click on debug and get 1 error after another. But i can't change the "..., % var . var", because it will break v1 and i still have to dev on. I am using https://www.a...
by Taurus
18 Oct 2020, 04:07
Forum: Ask for Help (v1)
Topic: get classNN from Control hwnd Topic is solved
Replies: 7
Views: 1444

Re: get classNN from Control hwnd Topic is solved

Perfect, it's working. Thanks! :thumbup:
by Taurus
16 Oct 2020, 03:01
Forum: Ask for Help (v1)
Topic: get classNN from Control hwnd Topic is solved
Replies: 7
Views: 1444

Re: get classNN from Control hwnd Topic is solved

How does this help getting the classNN from Control hwnd?
by Taurus
15 Oct 2020, 10:06
Forum: Ask for Help (v1)
Topic: get classNN from Control hwnd Topic is solved
Replies: 7
Views: 1444

get classNN from Control hwnd Topic is solved

Hi, i am using WinGet Clist, ControlList, % WinID because the classes of the window are like ahk_class layout_window_t#6 1 ahk_class gui.tabbar_panel#34 1 (= classes with linebreak adding 1, so i cannot use Loop Parse, CList, `n) Spy is telling the right name: MouseGetPos, msX, msY, msWin, msCtrlHwn...
by Taurus
14 Oct 2020, 09:41
Forum: General Discussion
Topic: WebView2
Replies: 15
Views: 9218

Re: WebView2

I am using 86.0.622.38 (Offizielles Build) (64-Bit)

Do i have to use anything else?
by Taurus
13 Oct 2020, 04:07
Forum: General Discussion
Topic: WebView2
Replies: 15
Views: 9218

Re: WebView2

Hm... found this, but i don't understand it... :think:

https://github.com/webview/webview
by Taurus
13 Oct 2020, 03:15
Forum: General Discussion
Topic: WebView2
Replies: 15
Views: 9218

Re: WebView2

Hi, do you have any update / working example on this?

I tried it, but i get Error 80070002. :(

By the way, Teamviewer is using WebView2Loader.dll too. 8-)
by Taurus
17 Aug 2020, 06:52
Forum: General Discussion
Topic: WebView2
Replies: 15
Views: 9218

Re: WebView2

Thanks for keeping this up to date!!! :thumbup: ;)
by Taurus
05 Jun 2020, 05:04
Forum: Ask for Help
Topic: A_ZipCompressionLevel for Litezip ZipCreateFile not usable/blank Topic is solved
Replies: 2
Views: 1647

A_ZipCompressionLevel for Litezip ZipCreateFile not usable/blank Topic is solved

Hi, i am trying to use litezip, but i can not set A_ZipCompressionLevel. Setting it to 0 - 9 doens't make a difference. I am using ahk h 1.30. FileDelete, % "litezip.zip" hZip:=ZipCreateFile("litezip.zip", "MyPassword") ZipAddFile(hZip, "test.exe") ZipCloseFile(hZip) MsgBox % A_ZipCompressionLevel S...
by Taurus
04 Jun 2020, 09:26
Forum: Ask for Help (v1)
Topic: Long int for ComObj Topic is solved
Replies: 2
Views: 573

Re: Long int for ComObj Topic is solved

Yes, you are right. I made AffectedRows global, that solved my problem. And 1+0x80 is auto converted into right format. So, solved. :)
by Taurus
07 May 2020, 07:54
Forum: Ask for Help (v1)
Topic: Array objects are very slow
Replies: 9
Views: 1286

Re: Array objects are very slow

Helgef wrote:
07 May 2020, 07:15
Var .= is optimised, obj.key .= is not.
It seems you are right. But why? Whats the difference and how to get the obj optimized?
by Taurus
07 May 2020, 07:53
Forum: Ask for Help (v1)
Topic: Array objects are very slow
Replies: 9
Views: 1286

Re: Array objects are very slow

If you define a variable i , you shoud use to build the the key. ;) ; pure array while oArray := {} ; 7 sec - 120 MB RAM oArray.SetCapacity(200000) ;v1 i := 200000 while(--i) oArray["MyKey" A_Index] := "abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz" Speedcheck .= (tmp := Round(Speedtest(0),...
by Taurus
07 May 2020, 04:27
Forum: Ask for Help (v1)
Topic: Array objects are very slow
Replies: 9
Views: 1286

Re: Array objects are very slow

I tried to find out, if key1 key2 key3 key4 is faster than key4 key3 key2 key1 but it's not. It's the same. So sort seems to do something else. Another problem, why does the second never ends: ; just string var vList := "", VarSetCapacity(vList, 50000000) ; 0.3 sec - 27 MB Loop 200000 vList .= "¶" "...
by Taurus
07 May 2020, 03:13
Forum: Ask for Help (v1)
Topic: Array objects are very slow
Replies: 9
Views: 1286

Re: Array objects are very slow

Hm... i tried that and it doesn't make a difference in time: ; pure array while oArray := {} ; 7 sec - 120 MB RAM oArray.SetCapacity(200000) ;v1 i := 0 while(++i < 200000) oArray["MyKey" A_Index] := "abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz" Speedcheck .= (tmp := Round(Speedtest(0),3)) ...

Go to advanced search