I don't think that's the place to put it.
Here's what I did for my 1600x900 screen.
In frmHarvest properties change StartUpPosition to 0 - Manual
In the forms code module add
Code:
Private Sub UserForm_Activate()
Me.Top = Application.Height - frmHarvest.Height - 50
Me.Left = Application.Width - frmHarvest.Width - 40
End Sub
play with the -50 and -40 for adjustment.