User Tips: Improving the readability when using GetString
From Jason H.:
In the article on GetString, it is shown that you should use
GetString to create one giant string for tables, combos, etc from a recordset column. This is not
necessary, as you can make your GetString parameters like this:
theCombo = "" & vbCrLf & vbTab & "
vbCrLf inserts a linefeed, and vbTab indents. This makes for pretty code, too (thus eliminating your
statement that it may be ugly, but it works!)