How to find my textBox1 on the DesignForm ?

vmars316 621 Reputation points
2020-09-09T23:22:50.447+00:00

Hello & Thanks ;

I cant find my textBox1 on the DesignForm anymore .
Somehow it got shoved off the Form1 .
It shows up when I run the programsm but not in Design .
There must be a list Controls screen somewhere .
Pls , what would that be ?
Thanks

Windows Forms
Windows Forms
A set of .NET Framework managed libraries for developing graphical user interfaces.
1,860 questions
{count} votes

Accepted answer
  1. Daniel Zhang-MSFT 9,621 Reputation points
    2020-09-10T02:25:42.393+00:00

    Hi Vernon Marsden,
    What version of your Visual Studio is and what target framework your project is?
    How did you create the textbox control? Please provide more details to reproduce the problem.
    And you can try the following suggestion.
    You can add another textBox from ToolBox to Form1 and check if it also doesn't show on the DesignForm.
    Please try to restart or update your Visual Studio.
    Best Regards,
    Daniel Zhang


    If the response is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. vmars316 621 Reputation points
    2020-09-10T18:11:15.91+00:00

    Thanks ;
    Win 10 Vs vb.net 2019
    When I run the program and stretch the form height , i can see EachSetLine As TextBox at the very bottom .

    if you open the form in Designer, go to Properties (press <F4>

    In Form1.vb[design] <F4> does nothing .
    When I open the Form1Designer.vb , likewise the F4 does nothing .

    But here is what i see there:
    Friend WithEvents txbAddress As TextBox
    Friend WithEvents EachSetLine As TextBox (the culprit)
    Friend WithEvents GotoBtn As Button
    Friend WithEvents WebBrowser1 As WebBrowser
    Friend WithEvents BackBtn As Button
    Friend WithEvents ForwardBtn As Button
    Friend WithEvents RefreshBtn As Button
    Friend WithEvents HomeBtn As Button

    If I delete it from here , will it go way ?
    And then I recreate in in Design Form .
    Thanks