Design an interface using a Windows Form application in VB .NET. The interface contains a textbox named "Original text" to input the text. The input text contains three words separated with a space in the "Original text" textbox. Then, when the user clicks on the button named "Separate", the program shows the first word in a textbox named "First word", the second word in a textbox named "Second word", and the third word in a textbox named "Third word". If the user input text doesn't contain a space, show a message in a messagebox to guide the user to input three words separated by a space. Figures (a) and (b) show examples of this interface and scenario. Write a complete VB.NET statement to run the scenario above. (Avoid using the split method -- Text.Length can be used with substring methods).
Form1
X
Form1
Original text: Welcome To VB.NET
Original text: Good Morning everyone
Separate
Separate
First word
Second word
Second word
Welcome
To
VB.NET
Good
Morning
everyone
(12 marks)