I’m pretty busy today so here’s a quick VBA tip.
We all know if you hover over a variable in VBA (while in debug mode) you can see the value of that variable. This allows you to see the values that are being passed in and out of variables – very useful. But by my estimation, these tooltips can only hold 77 characters (including the variable name). This basically means if the value in your variable is too long, it gets cut off.
Here’s an example. Hovering over the variable TempDataFile allows me to see the string that represents the file name, but that string gets cut off.
» More: VBA Hover ToolTip Trick


