Hi
I have big DIMs in my VBA and the program often says 'out of memory'. I want to resize the vars and for it I need to get inforamtion about used memory by variables.
and here is enother question: for type string in the help is written:
<TABLE cellSpacing=4 cellPadding=4 cols=3><TBODY><TR vAlign=top><TD class=T width="26%">String
(variable-length)</TD><TD class=T width="25%">10 bytes + string length</TD><TD class=T width="49%">0 to approximately 2 billion </TD></TR><TR vAlign=top><TD class=T width="26%">String
(fixed-length)</TD><TD class=T width="25%">Length of string</TD><TD class=T width="49%">1 to approximately 65,400</TD></TR></TBODY></TABLE>
what does it mean, if I have string 'A' does it use only 1 byte (or 10+1) ?
(if so, that means no mind to concatenate few different strings into one).
I have big DIMs in my VBA and the program often says 'out of memory'. I want to resize the vars and for it I need to get inforamtion about used memory by variables.
and here is enother question: for type string in the help is written:
<TABLE cellSpacing=4 cellPadding=4 cols=3><TBODY><TR vAlign=top><TD class=T width="26%">String
(variable-length)</TD><TD class=T width="25%">10 bytes + string length</TD><TD class=T width="49%">0 to approximately 2 billion </TD></TR><TR vAlign=top><TD class=T width="26%">String
(fixed-length)</TD><TD class=T width="25%">Length of string</TD><TD class=T width="49%">1 to approximately 65,400</TD></TR></TBODY></TABLE>
what does it mean, if I have string 'A' does it use only 1 byte (or 10+1) ?
(if so, that means no mind to concatenate few different strings into one).