Just noticed something, you have typed the word "from" and not "form". Did you happen to misspell this?
Second, in design view, are you sure that the form you want to open is named form2?
Third, try...
If Form1.WindowState = vbMaximized Then
Load Form2
Form2.WindowState = vbNormal
Form2.Visible = True
End If
Good Luck