Currently, when I resize the window, the buttons either overlap each other or leave a big gaping hole in the middle of them. I have tried changing the locks etc, but to no avail.
I have tried writing some code to do this, but it basically doesn’t even show the Edit button (it will appear for a bit while changing the size, then disappear again when I let go:
Var Width As Integer = Me.Width
Var ButtonWidth as Integer = (Width / 2) - 30
Var OffSet As Integer = Width + 10
NewProjectButton.Width = ButtonWidth
EditProjectButton.Width = ButtonWidth
EditProjectButton.Left = OffSet
This code is in the Resized handler of the window, and the buttons are in the controls section inside the window.