J
Joel Allen
Hi,
In my custom form code, I have global variable:
Dim varDocumentation
Further down in my code, I add things to the variable like this:
if Item.UserProperties("AirWater") = True then
varDocumentation = varDocumentation & "Air, Water, and Stuctural Reports" &
vbCrLf
end if
if Item.UserProperties("Impact") = True then
varDocumentation = varDocumentation & "Impact Safety Test Report" & vbCrLf
end if
If enough of the my if statements are true, I will get an error saying
"String too long". Any ideas on how to fix this?
Thanks,
Joel
In my custom form code, I have global variable:
Dim varDocumentation
Further down in my code, I add things to the variable like this:
if Item.UserProperties("AirWater") = True then
varDocumentation = varDocumentation & "Air, Water, and Stuctural Reports" &
vbCrLf
end if
if Item.UserProperties("Impact") = True then
varDocumentation = varDocumentation & "Impact Safety Test Report" & vbCrLf
end if
If enough of the my if statements are true, I will get an error saying
"String too long". Any ideas on how to fix this?
Thanks,
Joel