Hi,
If AdminDesktop is the name of a Form that your trying to show then you need to do this
AdminDesktop.Show
EDIT : However, i would recommend creating a new instance of the form if that is what it is. Like this
Dim MyForm as new AdminDesktop 'Create the new instance of the Form
MyForm.Show 'Show the new instance of the form