B-rad,
I'm using VB2008. The AboutBox seems to work ok... Do you have any specific questions?
Here' how I use it...
I placed this code in Form1 to hide Form1 and show AboutBox1:
CODE
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles Button1.Click
AboutBox1.Show()
Me.Hide()
End Sub
I placed this code in AboutBox1 to show Form1 when AboutBox1 closes:
CODE
Private Sub AboutBox1_Close(ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles Me.FormClosing
Form1.Show()
End Sub
As for aligning the centers of your pictureboxes... in the design view, click on one of the pictureboxes, then hold down the CTRL key and click on the second box. When they have both been selected, on the top of the IDE you'll find a menu item "Format". Click FORMAT and select ALIGN then CENTERS.
Good luck!
-Rob