I felt the need to draw big ascii letters like this:
' ▄█▀▀█▄ ██
' █▄▄ ▀▀ ▄█▀▀█▄ ▀██▀ ██ ██ ███▀█▄
' ▀▀▀██▄ ██▄▄██ ██ ██ ██ ██ ██
' ▀█▄ ▄█▀ ██ ▄▄ ██ ██ ██ ██ ██
' ▀▀▀▀ ▀▀▀▀ ▀▀▀ ▀▀▀▀▀ ██▀▀▀
' ▀▀
The combo boxes in my 2022 version of Visual Studio are failing to track the caret. Additionally implementing name changes can have my code jumping 5000 lines, and wipe out the edit marks on the scrollbar as well. Also -- using the back arrow sometimes does not navigate right, skipping over the previous position by one especially if I select the position from a code reference in a window that has been dragged off the main Visual Studio window, like I show below. I also thing using this off-form configuration is the problem that causes that fails, and maybe the creators don't debug it like that.
The result is getting lost a lot, or writing down every line I go to in 8000 lines. So I made this thing to put big comments inside my code that I could see while scrolling as a navigation aid.
I also thought why not try making it in C-Sharp while I am having fun. That did take three hours, and yes, there was cursing at the computer and C-Sharp in particular, but I felt like I accomplished something.
So I grouped all my code into sections, and applied the big green letters. The I wrote down an ordered list of them, so when I find one, I can check the map of 30 headings to see how far away I am from another section that I want to be in. This way I can move pretty fast.
Notes on the first time I programmed a thing in C-Sharp.
It's pretty anal. I have to typecast everything. It is unforgivingly and not attempting any match on error case conscious! Procs, when called, have to manually get the parentheses at the end or the thing will throw a strange error. Those braces are hard to track. Arrays are scaled using the actual length of the array, instead of upper bound, but indexed normally. Of course there is a different operator for everything logic. Case is switch -- blah, blah. No Chr or Asc.
Having online resources sure does help. I relatively sailed through it. Despite the cursing