I've created a form that adds multiple textboxs all with different names,
everything works fine on my windows pc (Excel 2002 sp3), but for a mac user
(Excel 2004 for Mac) excel crashes when they click in one of the textbox to
edit the text.

Set myTextbox = Me.Controls.Add("Forms.TextBox.1", "tb1", Visible)
With myTextbox
.Text = "Test"
.Top = 10
.Left = 6
.Width = 60
End With


Any help would be appreciated.