If you use the _ to split up a long line you can use a comment after the underscore eg
fullid = "Adam" & _ 'firstname
" " & _ ' space
"Foster" & _ 'lastname
" - king of " & ' position
"the world! " & ' department
or this line which sends out a comma separated variable line:
Print #fileNum%, category, _ ' send line out to file
doc.salescode(0), _ ' should be 3 digits
doc.salesauthorisationgroup(0), _ ' department
transdate, _ ' transactiondate ddMMyyyy
1, _ ' always 1
Format$(resp.value(0),"Fixed"), _ ' value
resp.shortdescription(0), _ ' max 29 chars
doc.salescode(0), _ ' usernumber ??
"", _ ' urn leave blank for sage
"3" ' source
Everyone else in the world is probably already doing this, oh well ...