Those arrows assist you in which side the window will dock.
Check this picture:
Download this sample chapter on the My Namespace, as excerpted from Microsoft Visual Basic Programmer’s Introduction to Whidbey”, by Sean Campbell, Scott Swigart, Kris Horrocks, Derek Hatchard, and Peter Bernhardt.
In short instead of using:
System.Windows.Forms.SystemInformation.MousePresent()
you can use:
My.Computer.Mouse.Exists()
To find whether your machine is connected to a Mouse or Not.
Few more examples from Insert Snippet:
This example plays a sound from a file:
My.Computer.Audio.Play("ringout.wav", AudioPlayMode.WaitToComplete)
This example provides the available free space in the drive:
Dim drive As System.IO.DriveInfo
drive = My.Computer.FileSystem.GetDriveInfo("C:\")
Dim space As Long = drive.AvailableFreeSpace
To clear the Clipboard:
My.Computer.Clipboard.Clear()
Old Method of declaration and instantiation:
Dim myForm As New Form1
myForm.Show
With My.Forms, you can directly call methods on the default instance:
My.Forms.Form1.Show
Intersting Isn't? What do you guys think about this feature? Share your thoughts here!
But rightn ow this is only available in VB .NET. I am looking this feature on C# too.
Express products are nothing but additional product line to the Visual Studio 2005 Family targeted for beginners and students.