Mathieu Guindon

Results 111 comments of Mathieu Guindon

Ah, assuming you had the autocompletion features enabled, holding down the arrow key would probably do it - when that's enabled, Rubberduck not only picks up selection changes, but also...

Not sure if it's still relevant, but this is the relevant code in Rubberduck: https://github.com/rubberduck-vba/Rubberduck/blob/2b341dd15605cbca037f3d5f7c50ef83fedc7c3b/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/VBComponents.cs#L133-L150 Note that this creates another problem - member attributes get wiped out, since the module...

> *Adding an OnPlayersComplete method to the IGridViewCommands interface would give you a clear point in which to switch from setup to battle mode* It's the other way around: `IGridViewEvents`...

The `IGameController` interface introduced in v1.1 came with a renaming of `GameController` to `StandardGameController`; a `SalvoModeGameController` could be implemented without affecting the standard controller code, and the common logic could...

This is OSS, the source code is right here, waiting to be forked. If you need strong naming, build it and strong-name it yourself - don't push your requirements and...

I might have forgotten to run the content updater tool for a while, to have the newer build up on the website; the current latest build is .5994, no repro...

This inspection could be made to also flag redundant variables that just copy the predeclared pointer, for example: ```vb Dim wb As Workbook Set wb = ThisWorkbook ``` Or: ```vb...

That would need to be tested, but at module level there's a `VB_Name` attribute that could theoretically be synced with a `@ModuleName` annotation (we could refactor/rename a module to sync...

IMO the existing examples should remain, and an additional two (?) examples would show the "more common" case with implicit variants (perhaps reorder the examples to put the new ones...

> In any way, this needs some cleanup because the handling is currently inconsistent. We do not report unused public functions and procedures in interface modules, but we report unused...