The Help files say that String variables come in two types - variable length and fixed length. But pretty much every other reference to strings talks about them as though they are always variable length. How do you tell whether a string is fixed-length or variable? How do you define a string as one or the other? When you declare a string using Dim, Private, Public (e.g., Dim strName as String), those are variable length right? Then how do you define a string as fixed? I can't find any information on setting fixed length strings. I'm working with some large memo files and I want to be sure I don't accidentally truncate them.
Thanks in advance.
Thanks in advance.