Search found 1647 matches

by kczx3
26 Feb 2023, 10:46
Forum: Scripts and Functions (v2)
Topic: WebView2
Replies: 139
Views: 35762

Re: WebView2

Also, the NavigationStarting event mentions redirects having the same ID as the original navigation so maybe you could compare those? Although I doubt that works for JavaScript initiated redirects that a lot of authorization flows use these days.
by kczx3
26 Feb 2023, 10:37
Forum: Scripts and Functions (v2)
Topic: WebView2
Replies: 139
Views: 35762

Re: WebView2

One way might be to only execute a script if the url match’s the end of the redirect since they usually have different hosts or subdomains.
by kczx3
23 Feb 2023, 12:43
Forum: Forum Issues
Topic: anyone else not a fan of the new V1 section Topic is solved
Replies: 34
Views: 5666

Re: anyone else not a fan of the new V1 section Topic is solved

Seems like a good idea. Looks nice to me
by kczx3
23 Feb 2023, 09:39
Forum: Forum Issues
Topic: anyone else not a fan of the new V1 section Topic is solved
Replies: 34
Views: 5666

Re: anyone else not a fan of the new V1 section Topic is solved

Idk how I hadn’t seen that GitHub gist from Lexikos until just now
by kczx3
22 Feb 2023, 14:41
Forum: Scripts and Functions (v2)
Topic: [Class] GuiReSizer - Position and Resize Gui Controls
Replies: 28
Views: 6314

Re: [Function] GuiReSizer - Gui Controls Position and Resize

@Relayer I'd suggest you post that as a separate topic to increase its searchability. It would be much better of in its own topic for feedback and questions.
by kczx3
20 Feb 2023, 10:22
Forum: Ask for Help (v2)
Topic: Invalid Index error when index is out of range
Replies: 21
Views: 2691

Re: Invalid Index error when index is out of range

I know it's beyond the scope of the question, but is there a reason you're not able to prebuild/load the listview? I think it would be reasonable to create it once and rely on hiding/showing the gui when its needed. I'll let the OP reply but I didn't see where it was mentioned that the ListView/GUI...
by kczx3
20 Feb 2023, 08:44
Forum: Ask for Help (v2)
Topic: Invalid Index error when index is out of range
Replies: 21
Views: 2691

Re: Invalid Index error when index is out of range

For clarity, I don't think the example you linked to by @just me actually demonstrates a virtual ListView. Perhaps you meant to link to the example that @SKAN originally reference as viewtopic.php?p=25486#p25486
by kczx3
17 Feb 2023, 16:14
Forum: Ask for Help (v2)
Topic: Invalid Index error when index is out of range
Replies: 21
Views: 2691

Re: Invalid Index error when index is out of range

You shouldn't be loading 110,000 rows into a ListView to begin with. That much data should be rendered virtually . That's just the nature of the beast when you start dealing with that kind of data. Are you at least creating the listview using the Count option with a large number and disabling Redraw...
by kczx3
17 Feb 2023, 11:01
Forum: AutoHotkey Development
Topic: Default GUI for simple tasks like keyboard and mouse mapping?
Replies: 4
Views: 1500

Re: Default GUI for simple tasks like keyboard and mouse mapping?

swagfag wrote:
17 Feb 2023, 08:28
those that can write them, dont need them. those that would need them, cant write them
This applies to sooooo many things. A very common problem.
by kczx3
17 Feb 2023, 10:36
Forum: Ask for Help (v2)
Topic: Invalid Index error when index is out of range
Replies: 21
Views: 2691

Re: Invalid Index error when index is out of range

I'd probably go for something like this to create a sort of Model for your row data. #Requires AutoHotkey v2.0 var := " ( a,b d,e,f h,i k,l,m )" for x,y in strsplit(var,"`n","`r") { arr := row(y) msgbox(arr[1] " " arr[2] " " arr[3]) } class row extends Array { __New(str) { super.__New(strsplit(str, ...
by kczx3
17 Feb 2023, 10:31
Forum: Ask for Help (v2)
Topic: Invalid Index error when index is out of range
Replies: 21
Views: 2691

Re: Invalid Index error when index is out of range

You can actually just set the length of the array after StrSplit to be 3 and then either use Array.Get with the Default parameter, or assign Array.Default to an empty string.
by kczx3
17 Feb 2023, 10:28
Forum: Ask for Help (v2)
Topic: Invalid Index error when index is out of range
Replies: 21
Views: 2691

Re: Invalid Index error when index is out of range

I don't see how this would impact the loading times. Can you provide an example that exhibits the delay? Attempting to use an array index which is out of bounds (such as zero, or if its absolute value is greater than the Length of the array) is considered an error and will cause an IndexError to be ...
by kczx3
16 Feb 2023, 13:45
Forum: Ask for Help (v2)
Topic: Binding Parameters?
Replies: 4
Views: 643

Re: Binding Parameters?

I guess maybe there are usecases for that with a static property/method. None that I've ever needed though. I'd vote to not have that done with the invoked property/method is static. I digress...
by kczx3
16 Feb 2023, 09:46
Forum: Ask for Help (v2)
Topic: Binding Parameters?
Replies: 4
Views: 643

Re: Binding Parameters?

It seems kind of silly to me that a static property/method call would get passed the hidden this. Or in this case, is the class object itself (not an instance of) being passed in?
by kczx3
10 Feb 2023, 15:01
Forum: Wish List
Topic: [v2] __Static property and the :: operator
Replies: 15
Views: 2900

Re: [v2] __Static property and the :: operator

I had no idea that v1 code could do that...
by kczx3
07 Feb 2023, 18:27
Forum: Forum Issues
Topic: Forum usability on ultrawide monitors
Replies: 19
Views: 2713

Re: Forum usability on ultrawide monitors

Already stated that corporations block browser extensions like that.
by kczx3
07 Feb 2023, 18:22
Forum: Forum Issues
Topic: Forum usability on ultrawide monitors
Replies: 19
Views: 2713

Re: Forum usability on ultrawide monitors

No idea what you mean by Userstyles plug-in
by kczx3
07 Feb 2023, 18:07
Forum: Forum Issues
Topic: Forum usability on ultrawide monitors
Replies: 19
Views: 2713

Re: Forum usability on ultrawide monitors

I also think that saying “it looks bad on X by Y resolution” is very subjective. As Flipeador pointed out, many websites use this type of formatting on the primary page content. It looks different than this forum has looked for as long as anyone can remember. Humans don’t like change. I like JoeDFs ...
by kczx3
07 Feb 2023, 18:05
Forum: Forum Issues
Topic: Forum usability on ultrawide monitors
Replies: 19
Views: 2713

Re: Forum usability on ultrawide monitors

Not everyone can use user styles as corporations block most browser extensions from being installed
by kczx3
07 Feb 2023, 12:02
Forum: Forum Issues
Topic: Forum usability on ultrawide monitors
Replies: 19
Views: 2713

Re: Forum usability on ultrawide monitors

Flipeador good to hear from you! I didn't know you were still active on the forum. Yes, one could certainly just resize the browser window. But with today's browsers using tabbed experiences so much it means you'd have to look at all open tabs in that size or constantly resize the window when viewi...

Go to advanced search