form placement

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • koosh34

    form placement

    I'm trying to get my program to run in the bottom right hand corner, how do
    I do this?


  • Armin Zingler

    #2
    Re: form placement

    "koosh34" <koosh34@hotmai l.comschrieb
    I'm trying to get my program to run in the bottom right hand corner,
    how do I do this?
    Specifies a component that creates an icon in the notification area. This class cannot be inherited.



    Armin

    Comment

    • Armin Zingler

      #3
      Re: form placement

      "Armin Zingler" <az.nospam@free net.deschrieb
      "koosh34" <koosh34@hotmai l.comschrieb
      I'm trying to get my program to run in the bottom right hand
      corner, how do I do this?
      >
      http://msdn2.microsoft.com/en-us/lib...otifyicon.aspx
      Forgot the subject. Sorry.
      If you want to place a Form, set it's location property. For example:

      Me.Location = CType(Screen.Pr imaryScreen.Wor kingArea.Size - Me.Size,
      Point)

      Be aware that there can be multiple screens (see also
      System.Windows. Forms.Screen.Al lScreens)


      Armin

      Comment

      Working...