01-29-2026, 09:44 PM
@Pete
Also notice that you can reduce the amount of code you're dealing with considerably by writing your types like this:
I find the above much more readable and ease to deal with than having to scroll a zillion lines with a type.
Also notice that you can reduce the amount of code you're dealing with considerably by writing your types like this:
Code: (Select All)
Type GlobalVar
As _Byte anum, MyScreen
As String UcaseKeys, LcaseKeys, CtrlKeys, AltKeys
End Type
I find the above much more readable and ease to deal with than having to scroll a zillion lines with a type.


