Question:

How to make textboxes equal each other in VB? Please help! Urgent!?

by  |  earlier

0 LIKES UnLike

Hi! I am experiencing a little problem. I want to make, say, textbox4 and textbox5 equal each other only when they are not empty. For example, I want to type 'HELLO WORLD' in textbox4 and i want the same thing to appear in textbox5 but when textbox4 is empty, i dont want them to show the same thing. Please help! Thanks a infinity in advanced.

 Tags:

   Report

1 ANSWERS


  1. You could try:

    If Not IsNull([textbox4]) Then

    [textbox5] = [textbox4]

    End If

Question Stats

Latest activity: earlier.
This question has 1 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.
Unanswered Questions