I have a group of Richtextboxs. Some have text, others don't.
My code is as follows:
For D = 1 to 15
If Richtextbox(D).text <> "" Then
Ent = Ent & D & | & Richtextbox(D).Text & |
End if
Next
What I want is a pipe delimited file I can record and then Split to get the information.
But the above code enters the D number even if the text is blank.
How can I correct this?
Any help will be appreciated
My code is as follows:
For D = 1 to 15
If Richtextbox(D).text <> "" Then
Ent = Ent & D & | & Richtextbox(D).Text & |
End if
Next
What I want is a pipe delimited file I can record and then Split to get the information.
But the above code enters the D number even if the text is blank.
How can I correct this?
Any help will be appreciated