io ho fatto questo:


codice:
    Public Function LaunchProcess()
        Dim Proc As New Process()
        Proc.EnableRaisingEvents = True
        Proc.SynchronizingObject = Me
        Proc.StartInfo.Arguments = "C:\Programmi\Windows Media Player\"
        Proc.StartInfo.FileName = "wmplayer.exe"
        Proc.StartInfo.UseShellExecute = True
        Proc.StartInfo.WindowStyle = ProcessWindowStyle.Maximized
        Proc.Start()
    End Function
ma mi maximizza "Media Player" e io vorrei il "Full Screen" non solo la maximizzazione...