Can't open designer. i'm using vb.net 2010

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • renebi
    New Member
    • Jan 2013
    • 1

    Can't open designer. i'm using vb.net 2010

    Now I open my project I have my written codes but I can't see the designer anymore.. what can be the problem and how to get it back?

    The error goes like this.

    There is no editor available for ...

    Make sure the application for the file type (.vb) is instaled.
  • kumsay
    New Member
    • Jan 2013
    • 25

    #2
    hi renebi,
    I know it's kinda late to answer your question but I'll still answer it. I've also encountered that problem. You deleted the code for the form that's why the designer for the form changed. You have to type the code for the form so that the designer will be back. Just copy this code:
    Code:
    Public Class Form1
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    
        End Sub
    End Class
    The Form1 is the name of your form. You should replace it with the name of your form.

    Comment

    Working...