Dim i As Integer i = TextBox1.Text
int i; i = textBox1.Text;
Dim Shell = CreateObject("Shell.Application") Shell.MinimizeAll()
object shell = Activator.CreateInstance(Type.GetTypeFromProgID("Shell.Application")); shell.GetType().InvokeMember("MinimizeAll", System.Reflection.BindingFlags.InvokeMethod, null, shell, new object[] { });