K koosh34 Apr 7, 2008 #1 I'm trying to get my program to run in the bottom right hand corner, how do I do this?
A Armin Zingler Apr 7, 2008 #2 koosh34 said: I'm trying to get my program to run in the bottom right hand corner, how do I do this? Click to expand... http://msdn2.microsoft.com/en-us/library/system.windows.forms.notifyicon.aspx Armin
koosh34 said: I'm trying to get my program to run in the bottom right hand corner, how do I do this? Click to expand... http://msdn2.microsoft.com/en-us/library/system.windows.forms.notifyicon.aspx Armin
A Armin Zingler Apr 7, 2008 #3 Armin Zingler said: http://msdn2.microsoft.com/en-us/library/system.windows.forms.notifyicon.aspx Click to expand... Forgot the subject. Sorry. If you want to place a Form, set it's location property. For example: Me.Location = CType(Screen.PrimaryScreen.WorkingArea.Size - Me.Size, Point) Be aware that there can be multiple screens (see also System.Windows.Forms.Screen.AllScreens) Armin
Armin Zingler said: http://msdn2.microsoft.com/en-us/library/system.windows.forms.notifyicon.aspx Click to expand... Forgot the subject. Sorry. If you want to place a Form, set it's location property. For example: Me.Location = CType(Screen.PrimaryScreen.WorkingArea.Size - Me.Size, Point) Be aware that there can be multiple screens (see also System.Windows.Forms.Screen.AllScreens) Armin