Pray tell: how would you go about using GDI / VBA user forms in place of conditional formatting - any links to good guides on the matter? Not something I've explored but I'd love to figure out a better way of doing things. The viz is definitely the bottleneck here.
As discussed these are the important links as taken from awesome-vba. They're written in french but are a simple google-translate away.
- 🖼⭐ Use of GDIPlus in VBA - GDIPlus can be used to create a
canvas like element where any image can be drawn to. Additionally check out this GDI32 class from the same author.
- 🖼⭐ Use of OpenGL in VBA - OpenGL is a cross-language, cross-platform application programming interface for rendering 2D and 3D vector graphics. In this article the authors of the GDIPlus class.
Kallun is also creating a Maze game with another user using similar technology, and has also been working on a PictureBox class which would likely help your endeavour, though that hasn't been released yet :) That said he learnt most of what he knows from the top 2 resources I believe.
As discussed these are the important links as taken from awesome-vba. They're written in french but are a simple google-translate away.
canvaslike element where any image can be drawn to. Additionally check out this GDI32 class from the same author.Kallun is also creating a Maze game with another user using similar technology, and has also been working on a PictureBox class which would likely help your endeavour, though that hasn't been released yet :) That said he learnt most of what he knows from the top 2 resources I believe.