Sir,
I m trying to insert a string which is in multiple lines. Is there any keyword in CR equivalent to [vbcrlf] for showing other string to next line.
Regards,
Manish
Printable View
Sir,
I m trying to insert a string which is in multiple lines. Is there any keyword in CR equivalent to [vbcrlf] for showing other string to next line.
Regards,
Manish
I got the solution. I used [chr(13)] function to enforce string to next line.
Thanx
chr(13) by itself does not perform the vbCrLf. you need to usein conjunction for proper resultCode:chr(10) & chr(13)