I\'m using Windows Vista and C#.net 3.5, but I had my friend run the program on XP and has the same problem.
So I have a C# program that I have running in the backgr
Try resizing the form and bringing it to the front of the z-order like so:
Rectangle screenRect = Screen.GetBounds(this); this.Location = screenRect.Location; this.Size = screenRect.Size; this.BringToFront();