Link to home
Start Free TrialLog in
Avatar of emi_sastra
emi_sastra

asked on

Check Maximum of Characters of A Line At Multiple Line Textbox.

Hi All,

I want to control user input of a multiple line text box for maximum characters per line.

How could I do it ?

Thank you.
ASKER CERTIFIED SOLUTION
Avatar of Nasir Razzaq
Nasir Razzaq
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of emi_sastra
emi_sastra

ASKER

Hi CodeCruiser,

Great.

For Each Line In Lines
   If Line.Length > 10 Then
      msgbox "Error"
   End If
Next

Thank you very much for your help.